body {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #222831;
  color: #ddd;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  gap: 20px;
}

.header {
  font-family: "Tiny5", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fac650;
  font-size: 35px;
  background-color: #111720;
}

.scores-container {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.scores-container .sign {
  color: #fac650;
  font-size: 50px;
}

.scores-container .score {
  font-size: 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

button {
  background-color: ghostwhite;
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}
a {
  text-decoration: none;
  font-size: 30px;
}
a:visited {
  color: #e5e7eb;
}
a:hover {
  color: #e5e7eb;
}
