*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    width: 450px;
    margin:50px auto ;
    padding: 50px;
    text-align: center;
    font-size: 2rem;
    background-color: brown;
    border-radius: 30px;
    box-shadow: 0px 0px 15px red;
    color:blanchedalmond;
}
ul{
list-style-type: none;
display: flex;
justify-content: center;
font-size: 4rem;
}
.buttons{
    display: flex;
    justify-content:space-evenly;
}
button{
    font-size: 3rem;
    padding: 5px;
    border-radius: 50%;
    border: 2px groove transparent;
    background-color: darkred;
    color: coral;
}
button:hover{
    box-shadow: 0 0 3px black;
    border: 2px groove black;
    color: blanchedalmond;
}

i{
    pointer-events: none;
}
h1{
    box-shadow: 0 0 5px black;
    border-radius: 20px 0px;
}