.header{
    display: flex;
    align-items: center;
    margin-right: 50%;
    padding-right: 50%;
    position: absolute; left: 40%; top: 50px;
}

.buttons{
    display: flex;
    flex-direction: column;
    max-width: 100px;
    position: absolute; left: 45%; top: 30%;
}

body{
    background-color:beige ;
}

.tittle{
    color: rgb(0, 0, 0)
}

button{
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
    background-color: antiquewhite;
    font-weight: 900;
    font-size: 20px;
    border-radius: 15px;
}

button:hover{
    background-color: rgb(255, 213, 158);
    transition: background-color 0.7s;
}

button:active{
    background-color: rgb(255, 145, 0);
    transition: background-color 0.6s;
}