
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 80px;
    height: 100vh;
}
button{
    width: 250px;
    height: 50px;
    color: rgb(80, 233, 80);
    background-color: rgb(36, 36, 36);
    border-radius: 8px;
    position: relative;
    z-index: 11;
    gap: 5px;
    border: none;
    margin: 5px;
    text-decoration: none;
}

button:hover{
    background-color:rgb(80, 233, 80);
    transition: 0.5s;
    color: rgb(36, 36, 36);
    cursor: pointer;}
    
