.original-surfer-regular {
    font-family: "Original Surfer", sans-serif;
    font-weight: 400;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Original Surfer", sans-serif;
    color: #373D3F;

}

.wrapper {
    width: 100%;
    margin: 0 auto;
    background-color: #f4f1e8;
}

header {
    padding: 1rem 0;
    font-size: 5rem;
    text-align: center;
}

a {
    text-decoration: none;
    color: #373D3F;
}

a:active {
    text-decoration: underline;
    font-weight: bolder;
    color: black;
    background-color: #ccc;
}

a:visited {
    color: #373D3F;
}

a.active {
    text-decoration: underline;
    font-weight: bolder;
    color: black;
    background-color: #ccc;
}

li {
    list-style-type: none;
}

ul {
    padding: 0;
}

#sticky-nav {
    display: flex;
    width: 100%;
    height: 4rem;
    position: sticky;

    top: 0;
    z-index: 1000;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background-color: #f4f1e8
}

nav {
    align-items: center;
}

#sticky-nav ul {
    list-style-type: none;
    display: flex;

    padding: 0;
}

#sticky-nav a {
    align-self: center;
    justify-self: center;
    padding: 0.5rem 0.25rem;
    font-size: 1rem;
}

.content {
    margin: 0 auto;
    padding: 0 0 3rem 0;
    width: 90%;
    justify-self: center;
    border-bottom: 2px solid #ccc;
    text-align: center;
}

.content img {
    padding: 2rem 0;
    width: 100%;
}

.content h2 {
    padding: 4rem 0 0 0;
    margin: 0rem 0 0.5rem;
    font-size: 2rem;

}

.content p {
    margin-top: 0;
 
}
footer{
    text-align: center;
}

@media (min-width: 26rem) {


    #sticky-nav a {

        padding: 0.5rem 0.33rem;
        font-size: 1rem;
    }

}


@media (min-width: 40rem) {
    body {
        background: url('images/background.jpg') no-repeat scroll center top/cover transparent;

        /* background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat; */

        background-blend-mode: overlay;
        background-color: rgba(247, 247, 247, 0.33);




    }

    .wrapper {
        width: 90%;
        box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;

    }

    #sticky-nav a {
        padding: 0.5rem;
        font-size: 1.5rem;
    }
}

@media (min-width: 70rem) {
    .wrapper {
        width: 70%;
    }

    #sticky-nav a {
        padding: 1rem 1.25rem;
        font-size: 1.5rem;
    }

    h2 {
        font-size: 5rem;
    }

    h4 {
        font-size: 2rem;
    }

    p {
        font-size: 1.25rem;
    }
    li{
        font-size: 1.25rem;
    }

}