body{
    background-color: antiquewhite;
}

#head1{
    align-items: center;
    justify-content: center;
    font-style:oblique;
    font-size: 70px;
    width: 860px;
    height: 110px;
    margin: auto;
    
}
button{
    background-color: rgb(74, 71, 71);
    border-radius: 100%;
    width: 150px;
    height: 150px;
    font-size: 110px;
    border: solid black 5px;
    box-shadow: 1px 1px;
    cursor: pointer;  
    
    
}
#btn{
    grid-row: 1;
    grid-template-columns: repeat(3,1fr); 
    gap: 100px;
    
}
button:hover{
    background-color: rgb(200, 191, 191);
}
#btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    
}
#data{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

