*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', serif;
}

.hero{
    width: 100%;
    height: 100vh;
    background-color: rgb(81, 126, 185,.5);
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .logo{
    width: 200px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 20px;
}
nav ul li a{
    text-decoration: none;
    color: #032248;
    font-size: 25px;
    font-weight: bold;
    font-style: italic;
}
.content{
    text-align: center;
}
.content h1{
    font-size: 90px;
    color: #032248;
    font-weight: bolder;
    font-family: serif;
    transition: 0.5s;
}
.content h1:hover{
    font-size: 90px;
    -webkit-text-stroke: 2px #032248;
    color: transparent;
}
.content h2{
    font-size: 25px;
    color: transparent;
    font-family: serif;
    transition: 0.5s;
}
.content h2:hover{
    -webkit-text-stroke: transparent;
    color: #032248;
}
.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: rgba(81, 126, 185, .5);
    
}
@media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
}
footer {
    position:absolute;
    text-align: center;
    color: #032248;
    font-size: 20px;
    font-weight: bold;
    padding: 20px;
    bottom: 0;   
    right: 0;
    left: 0;
}
