*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
.title {
    text-decoration: none;
}

#home-jumbotron {
    background-color: white;
}

.site-header-wrapper {
    display: flex;
    width: 100%;
    min-height: 8vh;
    top: 0px;
    position: fixed;
    box-shadow: 0px 2px 5px rgb(0,0,0,0.2);
    background-color: rgb(247, 247, 247);
    opacity: 0.95;
    z-index: 1000;
    justify-content: center;
}

.top-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.site-brand  {
    text-transform: uppercase;
    color: rgb(50, 50, 50);
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 2px;
}

.site-brand a {
    color: rgb(50, 50, 50);
    text-decoration: none;
}


.nav-links {
    display: flex;
    justify-content: space-around;
    width: 40%;
}

.nav-links a {
    text-decoration: none;
    color: rgb(50, 50, 50);
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 13.5px
}

.nav-active {
    display: flex !important;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(50, 50, 50);
    margin: 5px;
}

.burger-toggle .burger-line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-toggle .burger-line2 {
    opacity: 0;
}
.burger-toggle .burger-line3{
    transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 1024px){
    .nav-links {
        width: 60%;
    }
}



@media screen and (max-width: 780px) {
    .burger {
        display: block;
    }
    
    .nav-links {
        background-color: rgb(247, 247, 247);
        position: fixed;
        right: 0px;
        top: 8vh;
        width: 50%;
        height: 80%;
        flex-direction: column;
        align-items: center;
        display: none;
    }  
    .nav-links a {
        opacity: 1;
    }
}





#content {
    position: relative;
    max-width: 960px;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

