.box
{
     height:100px;
     width:100px;
     margin-top: 3px;
     border: 2px solid black;
     box-shadow: 0 10px 20px black;
     transition: transform .5s ease;
}
#buttons
{
     padding-top: 50px;
     height: 360px;
     width: 400px;
     background-color: rgba(0, 0, 0, 0.150);
}
.box:active
{
     transform: scale(0.8);
}
.image
{
     height: 90px;
     width: 90px;
}
.choice_box
{
     height: 50px;
     width: 170px;
     margin-left: 20px;
     border-radius: 10px; 
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 15px;
     font-weight: 500;
     transition: transform .5s ease;
     box-shadow: 0 5px 10px black;
}
.choice_box:hover
{
     box-shadow: 0 10px 20px black;
     transform: scale(1.1);
}
body
{
     background-color: rgba(13, 255, 0, 0.701);
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h2
{
     font-size: 40px;
}
