body {
    text-align : center ;
}

button {
    width : 120px ;
    height : 60px ;
    border-radius : 5px ;
    background-color : rgb(161, 239, 253) ;
    border-style : none ;
    font-size : 20px ;
    transition : all 0.5s ease ;
    cursor : pointer ;
}

button:hover {
    transform : translateY( -10px ) ;
    background-color : rgb(184, 244, 255) ;
}

button:active {
    background-color : rgb(50, 224, 255) ;
}

#buttons {
    padding : 20px ;
}

#buttons button {
    display : inline-block ;
    margin-right : 40px ;
    margin-top : 20px ;
}

#buttons button:last-child {
    margin-right : 0 ;
}