@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500&display=swap');
*{
    padding:0px;
    margin:0px;
}
body{
    position: relative;
    width: 100%;
    height:100%;
    box-sizing: border-box;
    font-family: "jost",sans-serif;
}
nav{
    position: fixed;
    width:100%;
    height:50px;
    background-color: black;
    color:white;
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
    align-items: center;
}
nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}
nav ul li a{
    color:white;
    padding:10px 5px;
    text-decoration: none;
    border:none;
}
nav ul li a:hover{
    content: "";
    border-bottom: 2px solid;
    border-radius: 12px;
    border-color: rgb(2, 250, 114);
    color:rgb(2, 250, 114) ;

}
.active{
    color:rgb(2, 250, 114);
}
.dropdown{
    position: absolute;
    margin-top:20px;
    width: 180px;
    height: 100px;
    display: flex;
    justify-content: center;
    background-color: black;
    border: 1px solid rgb(2, 250, 114);
    border-radius: 12px;
    visibility: hidden;

}
.dropdown::before{
    width: 400px;
    height: 400px;
    background-color: rgb(0, 0, 0);
    margin-top: -20px;
    transform: rotate(45deg);
}
.dropdown ul{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: space-evenly;
    padding:auto;

}
.dropdown ul li {
    width: 100%;
    text-decoration: none;
    border:none; 
    margin: 5px;
}
.dropdown ul li a:hover{
   border: none;

}


