body {
  margin: 0;
  padding: 0;
  background-color: #4e0608;
}

.buttons-container {
  margin: 0 auto;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  height: 200px;
}

.buttons-container button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: none;
  width: 100%;
  height: 130px;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.4s;
}

.buttons-container img {
  display: block;
  width: 50px;
  height: 50px;
}

.btn-p {
  font-size: 1.2rem;
  height: 0;
}

.buttons-container button:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 10px black;
}

.buttons-container button:focus {
  background-color: rgb(9, 192, 9);
}

.playround-results {
  margin: 0 auto;
  background-color: white;
  text-align: center;
  max-width: 600px;
  height: 150px;
  border-radius: 0.4rem;
}

.playround-results p {
  padding: 0.7rem 0;
  font-size: 1.4rem;
  height: 0.1rem;
}

.score-results {
  margin: 0 auto;
  background-color: white;
  text-align: center;
  max-width: 600px;
  height: 150px;
  border-radius: 0.4rem;
}

.score-results p {
  padding-top: 1rem;
  font-size: 1.4rem;
  height: 1rem;
}

.reset-btn {
  border: none;
  color: white;
  font-weight: bold;
  background-color: black;
  padding: 1rem 2rem;
  border-radius: 0.3rem;
  cursor: pointer;
}

.reset-btn:hover {
  color: #a81015;
}

.reset-btn-container {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
