@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo&display=swap');

*{box-sizing: border-box;}

body {
    font-family: 'Nanum Myeongjo';
    font-size: 1.2em;

    background-image: url("bg.webp");
    background-position: center center;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main {
    margin-bottom: auto;
}

.hidden {
    display: none;
}

p,
li {
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: stable;
}

p {
    text-align: left;
}

main p:first-of-type::first-letter {
    float: left;
    font-size: 2.4em;
    line-height: 0.8;
    margin-right: 0.1em;
    font-weight: bold;
}

a {
    color: blue;
    text-decoration: underline 2px;
    font-weight: bold;
    &:hover {
        text-decoration: underline 2px;
    }
    &:visited {
        color: blue;
    }
    &:active {
        color: red;
    }
}

header {
    text-align: center;
}

footer {
    max-width: 600px;
    text-align: center;
    padding-block: 2rem;
    margin-inline: auto;
}
footer p {
    text-align: center;
}

hr {
    border-color: #00000088;
}
