body{
    background-color: rgb(174, 72, 137);
    text-align: center;
    font-size: 2em;
}

header{
    margin: 0 auto;
    color: white;
}


nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

a{
    text-decoration: none;
    text-align: center;
    display: flex;
    margin: 20px;
    justify-content: space-around;
    color: white;
    background-color: rgb(123, 39, 39);
    border-radius: 95%;
    width: 50%;
    box-shadow: 3px 3px black;
    padding: 20px;
}

a:hover{
    background-color: rgb(255, 81, 81);
    color: yellow;
    box-shadow: 6px 6px black;
}