body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;




}
.cub-container{
width: 60px;
height: 60px;
background-color: brown;
border: 2px solid whitesmoke;
border-radius: 8px;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;


}
.button{
background-color: rgb(253, 255, 250);
color: black;
padding: 4px 8px;
border: none;
border-radius: 3px;
cursor: pointer;
font-size: 10px;
transition: background-color 0.3s ease;
width: 90%;
text-align: center;
top: 20px;
left: 180px;
position: relative;

}
.button:hover{
    background-color: black;
}
.container{
position: relative;
height: 200px;
width: 200px;
border: 1px solid blue;
}