body{
    background: antiquewhite;
}

header{
    background: coral;
    border-radius: 20px;
    height: auto;
    padding: 6px;
    text-align: center;
    margin: 15px;
}

header:hover{
    background: black;
    color: coral;
}

ul{
    background: darkblue;
    text-align: center;
    width: 250px;
    display: block;
    margin: auto;
    list-style: none;
    padding: 10px;
    border-radius: 8px;
    
}

ul:hover{
    background: black;
    
}

a{
    text-decoration: none;
    font-size: 30px;
    padding: 20px;
    font-style: oblique;
    color: white;
}

a:hover{
    color: darkviolet;
}

#acts{
    background:darksalmon;
    border-radius: 20px;
    height: auto;
    padding: 6px;
    margin: 15px;
    width: 700px;
    font-size: 10px;
    text-align: inherit;
    display: block;
    margin: auto;
    margin-top: 10px;
}

#acts:hover{
    background:black;
    color:darksalmon;
}