/* Global styles */
html, body {
    margin: 0;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

h1 {
    text-align: center;
    text-decoration: underline;
    font-size: 55px;
}

h2 {
    text-decoration: underline;
    font-size: 40px;
    text-align: center;
}

p {
    font-size: 22px;
}

.hero {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3));
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/***************************
    Navigation Styles 
***************************/
nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    width: 80px;
    margin-left: 2%;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 40px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
}

nav ul li a:hover {
    color: black;
    transition: 0.3s;
}

.nav-alternate {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 15px 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(28, 109, 141);
    border-bottom: 2px solid black;
}

.nav-alternate ul {
    text-align: right;
    width: 100%;
}

.nav-alternate ul li a{
    font-size: 20px;
    color: white;
}
.nav-alternate ul li a:hover{
    color: black;
    transition: 0.3s;
    
}

.hamburger {
    display: none;
    background-color: transparent;
    border: 0;
    color: white;
    cursor: pointer;
    font-size: 35px;
    
}

.hamburger:focus {
    outline: none;
}

.content {
    text-align: center;
}

.content h1 {
    font-size: 100px;
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

.content a {
    text-decoration: none;
    display: inline-block;
    color: white;
    font-size: 22px;
    border: 2px solid white;
    padding: 14px 70px;
    border-radius: 100px;
    margin-top: 45px;
}

.content a:hover {
    transition: 0.3s;
    background-color: white;
    color: black;
}

.front-video {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.mission {
    width: 100%;
    text-align: center;
}

.mission h2 {
    margin-top: 3%;
}
.mission p {
    margin: 0 25% 3% 25%;
}

.divider {
    width: 70%;
    margin-left: 15%;
    height: 1vh;
    background-color: rgb(28, 27, 31);
}

/***************************
         Footer styles 
***************************/
footer {
    width: 100%;
    padding: 15px 8px;
    background-color: rgb(28, 27, 31);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

footer ul li {
    display: inline-block;
    list-style-type: none;
}

footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin: 0 50px;
}

footer ul li a:hover {
    font-size: 20px;
    color: aqua;
    transition: 0.3s;
}

.foot-hover:hover{
    color: aqua;

}

/***************************
         Image styles 
***************************/
figure img {
    width: 60%;
    height: 30%;
}

.title {
    background-color: rgba(255, 255, 255, .2);
    border-radius: 100px;
    padding-top: .5%;
    padding-bottom: .5%;
}

