html {
    scroll-behavior: smooth;
    background: url('../images/background.jpg') no-repeat center center fixed #161d23;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    margin: 0;
    font-family: 'Libre Caslon Text', serif;
    color: #161d23;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0.3rem 0 0 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: #161d23 solid 0.3rem;
}

li {
    float: left;
}

li a {
    display: block;
    padding: 1rem;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #161d23;
    color: #edf5fc;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: #edf5fc
}

.page-container {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.page-content {
    width: 80vw;
    text-align: center;
}

.contact-link {
    color: #161d23!important;
}

footer {
    font-family: 'Libre Caslon Text', 'Baskervville', serif;
    background-color: #161d23;
    color: #edf5fc;
    text-align: center;
}

#footer {
    padding: 1rem 0;
}

@media screen and (max-width: 500px) {
    li a {
        padding: 0.4rem;
        font-size: 14px;
    }
    h1 {
        font-size: 28px;
    }
    p {
        font-size: 14px;
    }
    .page-content {
        width: 98vw;
    }
}

@media screen and (min-width: 1200px) {
    li a {
        padding: 1.3rem;
        font-size: 18px;
    }
    h1 {
        font-size: 34px;
    }
    p {
        font-size: 18px;
    }
    .page-content {
        width: 60vw;
    }
}

