nav{
    display: flex;
    justify-content: center;
    background: transparent;
    
    padding: 10px 0;
    align-items: center;
    transition: all 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s;
    padding-left: 30px;
}
nav:hover{
    box-shadow: 0px 0px 100px rgba(51, 104, 196, 0.5);
}


nav img{
    width: 55px;
    border: 2px solid rgb(47, 233, 137);
    border-radius: 20px;
}

nav ul{
    display: flex;
    gap: 50px;
    align-items: center;
    background: transparent;
    justify-content: space-between;
    padding: 8px 60px;
    margin: 0 20px;
    border-radius: 20px;
    border: none;
}

nav ul li{
    list-style-type: none;
    color: white;
    font-variant: small-caps;
    font-family: "Oswald", sans-serif;
    letter-spacing: 2px;
    padding: 10px;
    font-weight: bold;
    font-size: 23px;
    transition: all 0.5s;
}
nav ul li a{
    text-decoration: none;
    color: white;
}
nav ul li a:hover{
    text-decoration: underline;
    text-decoration-color: rgb(196, 8, 196);
    text-underline-offset: 5px;
}
