body {
    background-color: beige;
    text-align: center;
    list-style-position: inside;
    color: #222222;
    font-family: sans-serif;
    padding: 20px;
}

ul {
    list-style: none;
    padding-left: 0;
}

nav li {
    display: inline;
    margin-right: 15px;
}

nav a {
    color: #b67c3d;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
}

a:hover {
    color: #8b5a2b;
    text-decoration: underline;
}

a:active {
    color: #5d4037;
}

h1, h2 {
    color: #5d4037;
    font-family:  serif;
}

hr {
    border: none;
    height: 2px;
    background-color: #8b5a2b;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    hr {
        width: 50%;
    }
}

footer {
    color: #5d4037;
    font-family: serif;
}

/* This is located in playground.html */
.projects {
    color: #b67c3d;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    padding: 10px;
}