* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

h1, h2 {
    font-family: 'Georgia', serif;
    margin: 5px 10px 5px 10px;
}
p{
    font-family:'Times New Roman', serif;
    margin: 0px 10px 5px 10px;
}

img, video {
    max-width: 100%;
    height:auto;
}

/* NAV BAR */
header {
    background-color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
}

nav a {
    text-decoration: none;
    color: #0C2340;
}

.desktop-nav {
    display: none;
}

nav img {
    width: 55px;
    height: 55px;
}

nav a{
    margin: 10px;
}

nav i{
    margin: 10px;
}

main{
    background-color: #0C2340;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

main p{
    text-shadow: black 5px 5px 10px;
}

.button{
    text-align: center;
    background-color: #0C2340;
    color: white;
    padding: 15px;
    margin: 10px 0px 10px 0px;
    text-decoration: none;
    font-size: 20px;
    width:250px;
    height:50px;
}

/* HOMEPAGE */
.home{
    background-image: url(../img/home-background.gif);
}

/* 77-94 */
.page-2{
    background-image: url(../img/77-94-background.gif);
}

/* 95-08 */
.page-3{
    background-image: url(../img/95-08-background.gif);
}

/* 09-14 */
.page-4{
    background-image: url(../img/09-14-background.gif);
}

/* OUTRO & GALLERY */
.page-5{
    background-image: none;
    height: auto;
    text-shadow:none;
}

.page-5 a{
    background-color: white;
    color: #0C2340;
}

figure{
    margin: 10px 20px 0px 20px;
}

.caption{
    margin: 0px 20px 10px 20px;
    text-align: center;
}

#gs{
    margin: 0px 20px 0px 20px;
}

/* HAMBURGER MENU */
.fa-bars {
    color: #0C2340;
    font-size: 50px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #0C2340;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 70px;
    opacity: 0.85;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #C4CED3;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (min-width: 1080px){
    .desktop-nav {
        display: flex;
        justify-content: space-between;
    }

    .mobile-nav {
        display: none;
    }

    h1{
        font-size: 80px;
        margin: 5px 10px 5px 10px;
    }

    h2{
        font-size: 55px;
        margin: 5px 10px 5px 10px;
    }

    p{
        font-size: 30px;
        margin: 0px 20px 5px 20px;
    }

    .outro-text{
        margin: 0px 20px 20px 20px;
    }

    figure{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45%;
        height: auto;
        margin: 5px 10px 0px 10px;
    }

    figure img{
        height: 335px;
    }

    figure video{
        height: 335px;
    }

    .caption{
        margin: 0px 250px 20px 250px;
        font-size: 20px;
    }
    #gs{
        margin: 0px 250px 0px 250px;
        font-size: 20px;
    }
}