@font-face {
    font-family: 'SansNormalcy';
    src:
        url('/fonts/Sans-Normalcy.woff2') format('woff2'),
        url('/fonts/Sans-Normalcy.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 5% auto;
    background: #f2f2f2;
    color: #444444;
    font-family: 'SansNormalcy', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    text-shadow: 0 1px 0 #ffffff;
    max-width: 73%;
    /* padding: 0; */
    text-align: center;
}

code {
    background: white;
}

a {
    border-bottom: 1px solid #444444;
    color: #444444;
    text-decoration: none;
}

a:hover {
    border-bottom: 0;
}

.navbar {
    background-color: #333;
    overflow: hidden;
}

.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar a.active {
    background-color: #4caf50;
    color: white;
}

.content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1,
p {
    text-align: center;
}

@media screen and (max-width: 600px) {
    .navbar a {
        float: none;
        display: block;
        text-align: center;
    }
}
