@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;}

html{
    scroll-behavior: smooth;
}
.logo{
    height: 40px;
    filter: invert(100%); 
    
}
.good{
    margin-left: -400px;
}

.hero {
    width: 100%;
    height: 102vh;
    background-image: linear-gradient(rgba(15, 7, 51, 0.3), rgba(31, 19, 79, 0.3));
    position: relative;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video {
    position: absolute;
    z-index: -1;
}

@media (min-aspect-ratio: 16/9) {
    .bg-video {
        width: 100%;
        height: auto;
    }
}

nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 19px 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 21px;
}

nav ul li {
    list-style: none;
    display: inline-block; 
    margin-left: 39px;
}

nav ul li a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 21px;
}

nav ul li a:hover {
    background: transparent;
    color: rgb(80, 123, 194);
    text-decoration: underline;
    
}

.content {
    text-align: center;
}

.content h1 {
    font-size: 51px;
    color: whitesmoke;
    font-weight: 599;
}

.content h2 {
    font-size: 21px;
    color: whitesmoke;
    font-weight: 299;
}

.content a {
    text-decoration: none;
    display: inline-block;
    color: rgb(14, 10, 10);
    font-size: 25px;
    border: 2px solid black;
    padding: 15px 71px;
    border-radius: 51px;
    margin-top: 21px;
}

.navbar-brand ml-5 text-white {
    text-decoration: underline;
}