body{
    background-color: blueviolet;
}
nav{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 20px
}

nav a{
    color: antiquewhite;
    text-decoration: none;
    padding: 10px;
    width: 20px;
}

nav li{
    list-style: none;
    border: 20px;
}



a:hover{
    background-color: black;
}


