* {
  padding: 0;
  margin: 0;
}
body {
  display: flex;
  height: 100vh;
  width: 100vw;
  justify-content: center;
}
.mainbox {
  text-align: center;
  margin: 50px;
  border: 4px solid yellow;
  padding: 30px;
  border-radius: 15px;
  width: 800px;
  background-color:rgb(24, 24, 24);
}
.mainbox h1 {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: rgb(64, 122, 247);
}

.result {
  margin-top: 120px;
  margin-bottom: 120px;
  font-weight: bold;
  font-size: 40px;
  display: flex;
  justify-content: space-between;
  color: yellow;
}
.buttons button {
  height: 150px;
  width: 150px;
  margin: 10px;
  border-radius: 20px;
  border: none;
}
.buttons img {
  height: 150px;
  width: 150px;
  border-radius: 30px;
}
#restart {
  height: 70px;
  width: 170px;
  background-color: rgb(31, 233, 31);
  font-size: 30px;
  color: white;
  border: none;
  border-radius: 10px;
  display: none;
  margin: auto;
}
#choicew {
  color: yellow;
}
#result-op{
  height: 40px;
  width: 250px;
  border-radius: 5px;
  /* border: 2px solid white; */
  color: white;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width:687px) {
    .result{
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    .buttons button{
        height: 60px;
        width: 60px;
    }
    .buttons img{
        height: 60px;
        width: 60px;
    }
    body{
        background-color: red;
    }
    
}