@import url("https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap");

body {
  font-family: "Press Start 2P", sans-serif;
  background-color: #666;
  color: white;
  text-align: center;
}

#game {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

#game button {
  font-family: "Press Start 2P", sans-serif;
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 10px;
  background-color: white;
  cursor: pointer;
  box-shadow: 0 5px #999;
}

#game button:active {
  transform: translateY(4px);
  box-shadow: 0 1px #666;
}

#game button:hover {
  background-color: #ffcc00;
}

#game button#rock {
  border-radius: 50%;
  background-color: #ff3333;
}

#game button#paper {
  border-radius: 10px;
  background-color: #ffff66;
}

#game button#scissors {
  border-radius: 10px;
  background-color: #33cc33;
  display: flex;
  align-items: center;
  justify-content: center;
}

#score {
  font-size: 16px;
  margin: 20px 0;
}

#result {
  font-size: 20px;
  margin: 20px 0;
}

@media (max-width: 600px) {
  #game {
    flex-direction: column;
    align-items: center;
  }
  #game button {
    margin: 10px 0;
    width: 60px;
    height: 60px;
  }
}
