#container{
    display: block;
    margin: 0;
    position: absolute;
    top:30%;
    left: 40%;


}

.button1{
    font-size: 24pt;
    width: 300px;
    height: 200px;
    font-family:"Comic Sans MS", "Tahoma";
    text-align: center;
    border-radius: 15px;
    background-color: yellow;
    color: blue;
    
}

.button1:hover{
    font-size: 24pt;
    width: 300px;
    height: 200px;
    font-family:"Comic Sans MS", "Tahoma";
    text-align: center;
    border-radius: 15px;
    background-color: yellow;
    color: green;
    transition-duration: 2s;
    cursor: wait;
    box-shadow: 5px 10px darkgrey;

}