body{
    background-color: black;
    font-family: sans-serif;
    width:99%;
    height: 100%
}

header {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: row;
    font-family: sans-serif;
    height: 200px;
}
footer {
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height: 40px;
    background-color: black;
    text-align: center;
}

body{
    background-color: black;
    font-family: sans-serif;
    width: 99%;
    height: 100%
}
.pages a{
    color: white;
    text-decoration: none;
    width: 60ox;
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    margin: -3px;
    transition: 0.4s;
    font-size: 30px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.pages a:hover{
    color: black;
    background-color: white;
    transition: 0.4s;
}
.pages {
    justify-content: center;
    z-index: 2;
    text-align: center;
}
.banner {
    width: 100%;
    height: auto;
    display: block;
    position: relative; /* Use relative positioning for normal flow */
    top: 0px;
    padding: 0px;
    z-index: 1;
}
.avidrop{
    color: white;
    text-decoration: none;
    width: 135px !important;
    padding: 15px;
    margin: 0px !important;
    transition: 0.4s;
    font-size: 30px;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}
/* Styles for the dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content { 
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9); /* Match the dropdown background */
    min-width: 70px ; /* Same width as the toggle */
    z-index: 102; /* Ensure it’s on top of other elements */
    margin-top: 10px;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 15px; /* Adjust font size as needed */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-content {
    display: block;
}

p{
    color: white;
    font-family: sans-serif;
}
h1{
    color: white;
    font-size: 100px;
    vertical-align: middle;
    text-align: center;
    height: 100px;
    font-family: sans-serif;
}
.socials img{
    max-width: 50px;
    height: auto;
}
.socials a{
    vertical-align: middle;
    text-decoration: none;
    margin: 10px;
}
.socials{
    width: 100%;
    text-align: center;
    margin-top: 100px;
}


.wrapper {
    display: flex;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.wrapper .first-text {
    font-size: 60px;
    color: #fff;
}
.wrapper .sec-texts {
    height: 90px;
    line-height: 90px;
    overflow: hidden;
}
.sec-texts li {
    position: relative;
    top: 0;
    font-size: 60px;
    color: #0ef;
    list-style: none;
    text-shadow: 0 0 10px #0ef;
    animation: slide 12s steps(4) infinite, colorful 6s infinite;
    text-align:left;
    padding-left: 20px;
}
ul, li
{
padding:0px; margin: 0px;
}
@keyframes slide {
    100% {
        top: -360px;
    }
}
@keyframes colorful {
    100% {
        filter: hue-rotate(360deg);
    }
}
.sec-texts li span {
    position: relative;
}
.sec-texts li span::before {
    content: '';
    position: absolute;
    left: 0;
    width: 400px;
    height: 90px;
    background: #000;
    border-left: 2px solid #0ef;
    animation: typing 1.5s steps(10) infinite alternate;
}
@keyframes typing {
    100% {
        left: 100%;
        margin: 0 -35px 0 35px;
    }
}