body {
  font-family: "Press Start 2P", sans-serif;
  margin: 0;
  padding: 0;
  background-color:  hsl(237, 49%, 15%)
}

.container {
  position: relative;
  max-width: 700px;
  margin: 50px auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin-top: 120px;
}

.blur {
  filter: blur(8px);
}

.rules-image {
  position: absolute;
  background-color: rgb(107, 107, 107);
  padding: 15px;
  border-radius: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#game {
  margin-top: 80px;
}

h1 {
  text-align: center;
  color: #f8f8f8;
}

#game {
  text-align: center;
  margin-top: 20px;
}

.choices {
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin: 0 5px;
  cursor: pointer;
  background-color: #ff0000;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #f33c3c;
}

#result {
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 5px;
  color: #333;
}

.containers,
.score {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.player {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px; /* Added for spacing */
}

.player h1 {
  margin-bottom: 10px;
  color: #141414;
}

.player i {
  font-size: 24px;
  margin: 5px;
  color: #141414;
}

.button-below{
  display: flex;
}

#play-again {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

#play-again:hover {
  background-color: #45a049;
}

.score-container {
  margin: 0 10px;

}

.user-score,
.computer-score {
  font-size: 24px;
  color: hsl(229, 64%, 46%);
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 40px;
}

.player-one, .player-two{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 30px;
}

.result {
  margin-bottom: 20px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 25px;
}

.attribution {
  color: whitesmoke;
  text-align: center;
  margin-top: 20px;
}

a {
  text-decoration: none !important;
  color: white;
}

.attribution {
  font-size: 11px;
}

/* Adjustments for smaller screens */
@media screen and (max-width: 600px) {
  .container {
    margin: 20px auto;
    padding: 10px;
  }

  .player {
    margin-bottom: 20px;
  }

  .result {
    margin-bottom: 20px;
  }

  .rules-container {
    flex-direction: column;
  }

  .image-container {
    position: relative;
    margin-bottom: 20px;
  }

  .rules-image {
    width: 70%;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .attribution {
    margin-top: 20px;
  }
}
