*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

.hero {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3));
    position: relative;
    padding: flex;
    align-items: center;

}

nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 1%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    height: 80px;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 50px;

}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    padding: 0px;
}

nav ul li a:hover {
    transition: 0.5s;
    text-decoration: none;
    color: #fff;
    font-size: 21px;
    padding: 0px;

}


.button1{
    text-decoration: none;
    text-align: center;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 5px;
    margin-top: 20px;
    width: 220px;
    background-color: #E21F07;
    filter: drop-shadow(5px 10px 10px #0d0d0d);
}

.button1:hover{
    transition: 0.35s;
    color: #fff;
    font-size: 21px;
    background-color: #801409;

    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 5px;
    margin-top: 20px;
    width: 220px;
}


.content {
    text-align: center;
    position: absolute;
    left: 15%;
    top: 35%;

}

.content h1{
    font-size: 100px;
    font-family: Teko,sans-serif;
    color: #fff;
    font-weight: 600;
    filter: drop-shadow(5px 10px 10px #0d0d0d);
}

.content .text {
    text-decoration: underline;
    color: #fff;
    font-size: 20px;
    padding: 0px;
    flex-basis: 100%;
    height: 0;
    position: relative;
    bottom: 10px;
}

.content .button2{
    text-decoration: none;
    text-align: center;
    display: inline-block;
    color: #0d0d0d;
    font-size: 20px;
    font-weight: 600;
    padding: 15px;
    margin-inline: 20px;
    border: 2px solid transparent;
    border-radius: 5px;
    margin-top: 20px;
    width: 220px;
    background-color: #fff;
    filter: drop-shadow(5px 10px 10px #0d0d0d);
}

.content .button2:hover{
    transition: 0.35s;
    color: #fff;
    font-size: 21px;
    background-color: #0d0d0d;
}

#header-button{
    position: relative;
    bottom: 35px;
}
.video-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;

}



/* Dropdown Button */
.droptxt {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    padding: 0px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #fff;
    padding: 5px;
    text-decoration: none;
    text-align: left;
    display: block;

}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    transition: 0.35s;
    color: #fff;
    font-size: 25px;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
