html, body{
  height: 90vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Pixelify Sans;  
}


.container{
  width: 380px;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url("cloud.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  
}

/*Footer*/
footer{
  margin: 100px;
}


/*Spacing top and bottom in container*/

.header{
  margin-top: 10px;
  
}

.button{
  margin-bottom: 10px;
}

.text{
  font-size: 30px;

}

/*Font  size and color*/


.header h1{
  margin: 0;
  padding: 0;
  font-size: 40px;
}


.button a button{
  font-size: 25px;
  border: 2px solid #04AA6D;
  border-radius: 8px;
}

/*game position*/

.game{
  display: flex;
  flex-direction: row;
}

.left, .right{
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 25px;
}

.left button,.right button{
  font-size: 25px;
  border: 2px solid #04AA6D;
  border-radius: 8px;
}

.middle{
  display: flex;
  flex-direction: column;
}

