/* Special */
:root {
    --x-line-size: 0.2rem;
}

/* Elements */
body {
    margin: 0px;
    padding: 0px;
    font-family: 'Courier New', Courier, monospace;
}

header {
    border-bottom: var(--x-line-size) solid #FACADE;
}

nav {
    text-align: center;
}

footer {
    border-top: var(--x-line-size) solid #BADD1E;
    text-align: center;
}

/* Classes */

/* Individual */
#content {
    max-width: 60%;
    margin: 0px auto;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* Mobile */
@media (width <=640px) {
    #content {
        max-width: 95%;
    }
}