* {
    margin: 0;
    padding: 0;
    top: 0;
    scroll-behavior: smooth;
}

nav {
    width: 100%;
    height: 13vh;
    background-color: black;
    display: flex;
    justify-content: space-between;
    position: sticky;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 20px;
    color: white;
}

.logo, .navigations, .img-wrapper, .information-wrapper{
    max-width: 45%;
    min-width: 45%;
}

.logo img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.navigations { 
    display: flex;
    align-items: center;
    justify-content: right;
    padding-right: 3%;
}

.navigations a:link, a:visited {
    color:white;
    text-decoration: none;
    margin-left: 5%;
    width: 10%;
    text-align: center;
    padding: 5px 20px;  
}

.main-page {
    background: 
    linear-gradient(to bottom, rgba(255,255,255, 0) 10%, rgba(0,0,0, 1) 100%),
    url("static/bg.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 87vh;
}

.title-section {
    width: 100%;
    height: 100%;
}

.title-section h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 500%;
    text-align: center;
    padding-top: 25%;
    color: white;
}

.title-section p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 300%;
    font-weight: 900;
    text-align: center;
    color: rgb(98, 95, 120);
}

.information-section {
    height: 100vh;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: space-evenly;
}

.img-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.information-wrapper {
    color: white;
    display: flex;
    justify-content: left;
    align-items: center;
}

.information-wrapper h2 {
    padding-bottom: 5%;
    font-size: 450%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.information-wrapper p {
    padding-bottom: 5%;
    font-size: 120%;
    font-family: Arial, Helvetica, sans-serif;
}

.video-section {
    height: 100vh;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-section video {
    width: 75%; 
    height: 75%;
}


@media screen and (max-width: 800px)  {
    nav {
        height: 12vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .logo {
        margin-left: 2px;
        font-size: 8px;
    }
    
    .logo img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    
    .navigations { 
        padding-right: 4%;
    }
    
    .navigations a:link, a:visited {
        margin-left: 5%;
        width: 10%;
        padding: 2px 10px;  
    }
    
    .main-page {
        height: 87vh;
    }
    
    .title-section h2 {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 175%;
        text-align: center;
        padding-top: 100%;
        color: white;
    }
    
    .title-section p {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 100%;
        font-weight: 900;
        text-align: center;
        color: rgb(98, 95, 120);
    }
    
    .information-section {
        height: 50vh;
        width: 100%;
        background-color: black;
        display: flex;
        justify-content: space-evenly;
    }
    
    .img-wrapper {
        height: 100%;
    }
    
    .information-wrapper {
        max-width: 30%;
        min-width: 30%;
    }

    .img-wrapper {
        max-width: 50%;
        min-width: 50%;
    }
    
    .img-wrapper img {
        width: 150px;
        height: auto;
    }

    .information-wrapper h2 {
        padding-bottom: 5%;
        font-size: 100%;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
    
    .information-wrapper p {
        padding-bottom: 5%;
        font-size: 50%;
        font-family: Arial, Helvetica, sans-serif;
    }
    
    .video-section {
        height: 100vh;
        width: 100%;
        background-color: black;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .video-section video {
        width: 75%; 
        height: 75%;
    }
}