*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    list-style: none;
}
header{
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    background-color: rgba(0, 0, 0, 0.829);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 3rem;
    z-index: 1000;
}
.logo{
    color:white;
    font-size: 1.3rem;
    font-weight: 600;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
}
.logo:hover{
    transform: scale(1.1);
}
.nav-links{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;

}
li a{
    position: relative;
    color: white;
    font-weight: 300;
    
}
li a::before{
    position: absolute;
    content: " ";
    width: 0;
    left: 0;
    height: 5px;
    top: 25px;
    border-radius: 1rem;
    transition: 0.3s ease-in-out;
    background-color: rgb(252, 252, 252);
}
li a:hover::before{
    width: 100%;
}

/*Buttons*/
.btn{
    background-color:  rgb(3, 3, 27)!important;
}
.btn:hover{
    background-color: rgb(1, 1, 15)!important;
}
.visit-btn{
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    border: none;
    font-weight: 500;
    color: white;
    cursor: pointer;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
    background-color: rgb(3, 3, 27);
}
.visit-btn:hover{
    transform: scale(1.03);
}

#menu-icon{
    font-size: 2rem;
    display: none;
}

/*Scroll Bar*/
::-webkit-scrollbar{
    width: 20px;
}
::-webkit-scrollbar-track{
    background-color: rgb(219,219,219);
}
::-webkit-scrollbar-thumb{
    background-color: white;
}

/*Drop Downs*/
details summary::after {
  content: "▼";
}
details[open] summary::after {
    content: "▲";
}
summary{
    background-color: rgb(2, 2, 24);
}

/*Menu Lists*/
.menu li > * {
    background-color: rgb(3, 3, 27);
    width: 75%;
    gap: 10px;
}
.menu li > *:hover {
    background-color: rgb(1, 1, 15);
}

/*Sections*/
section{
    min-height: 100vh;
    padding: 8rem 12%;
    width: 100%;
    position: relative;
}

/*Responsive*/
