body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ebe6e6;
  color: #291f1f;
  display: flex;
  flex-direction: column;
}

.container,
.scores {
  display: flex;
  /* border: 1px solid black; */
  padding: 16px;
}

.container {
  justify-content: center;
  gap: 6%;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: auto;
}

.scores {
  font-size: 24px;
  font-weight: 700;
  justify-content: center;
  gap: 12%;
}

#resultText {
  /* border: 1px solid red; */
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  padding: 16px;
}

.container button {
  font-size: 48px;
  border: none;
  padding: 8px;
  border-radius: 8%;
  background-color: #c8c6c6;
  cursor: pointer;
}

.container button:hover {
  background-color: #bab7b7;
}

#reset {
  display: flex;
  justify-content: center;
  /* border: 1px solid blue; */
  padding: 16px;
}

#reset > button {
  font-size: 24px;
  border: none;
  padding: 6px 10px;
  border-radius: 8%;
  background-color: #c8c6c6;
  cursor: pointer;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

i {
  font-size: 20px;
  color: #291f1f;
}
