body{
    margin-top: 50px;
    text-align: center;

    background-image:url(stadiumimage.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: fixed;
    
  }

.box1{
  background-color: black;
  width: 50%;
  display: inline-block;
  align-items: center;
  margin-top: 20px;
  border-radius: 30px;
  border: 3px solid white;
  animation: bounceIn 2s forwards;
  
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.game-image{
  align-items: center;
}
.box1 h1{
  color: white;
  padding: 30px;
  font-weight: bold;
  font-size: 50px;
  font-style: italic;
  text-decoration: underline;
  
}

.game_buttons{
 
height: 100px;
width: 100px;
border: none;
margin: 10px;
border-radius: 50%;
background-color:grey;
padding: 0;
overflow: hidden;

}

img{
display: block;
height: auto;
border-radius: 50%;
width: 100%;
}

#reset{
color: rgb(248, 248, 248);
background-color: red;
border-radius: 30px;
border: 1px solid black;
padding: 10px 15px;
transition: background-color 0.5s ease;
}
#reset:hover{
background-color: rgb(199, 4, 4);
}
#reset:active{
background-color: rgb(146, 7, 7);
}

.show{
color: white
}