* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

.banner {
    width: 100%;
    height: 150vh;
    background-image: linear-gradient(rgba(89, 160, 231, 0.725),
            rgba(0, 0, 0, 0.75));
    background-size: cover;
    background-position: center;
}

.navbar {
    width: 100%;
    margin: auto;
    padding: 1rem 0;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(119, 151, 255);
    z-index: 9999;
}

.logo {
    width: 400px;
    cursor: pointer;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    padding-left: 50px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 50px;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
}

.navbar ul li::after {
    content: "";
    height: 3px;
    width: 0;
    background: #070b52;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.navbar ul li:hover:after {
    width: 100%;
}

.content {
    width: 100%;
    position: absolute;
    top: 150px;
    text-align: center;
    color: rgb(255, 255, 255);
}

.content h1 {
    font-size: 60px;
    font-family: sans-serif;
    margin-top: 50px;
}

.content p {
    margin: 100px auto;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    font-size: 25px;
    font-weight: bold;
    line-height: 10px;
}
.content a{
    margin: 100px auto;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    line-height: 1.8;

}
.content a:hover{
    color: rgb(0, 26, 172);
    transition: 0.5s;
}

.content video{
    width: 40%;
}


.sub {
    width: 100%;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.sub2 {
    width: 100%;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.sub3 {
    width: 100%;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.links {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-10%);
    text-align: center;
    color: white;
}

button {
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #ffffff;
    background: transparent;
    color: rgb(255, 255, 255);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

span {
    background: #000000;
    height: 100%;
    width: 0%;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}

button:hover span {
    width: 100%;
}

button:hover {
    border: 2px solid transparent;
}


#description{
    color: white;
    font-size: 15px;
    margin: 10px;
    line-height: 30px;
}

footer {
    width: 100%;
    background-color: #1b1b1b73;
    color: rgba(240, 240, 240, 0.95);
    display: grid;
    justify-items: center;
    position: fixed;
    bottom: 0;
    padding: 0.5rem 0;
    font-weight: bold;
    font-family: sans-serif;
}