body {
  background-color: #0a0a0a;
  color: #e0e0e0;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.title {
  text-align: center;
  color: #ffffff;
  font-size: 3vw;
  font-weight: 800;
  padding: 20px;
  white-space: nowrap;
  overflow: hidden;
}

.header {
  background-color: #494646;
  padding: 20px 0;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

button {
  font-size: 10vw;
  padding: 10px 20px;
  background-color: #808080;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px #fdf8f8;
  transition: 0.3s ease;
  white-space: nowrap;
}

button:hover {
  background-color: #2b2b2b;
  transform: scale(1.04);
}

.you {
  font-size: 3vw;
  color: #fdf8f8;
  display: flex;
  justify-content: space-between;
}

#yours,
#comp {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.result {
  font-size: 2vw;
  color: #e5e5e4;
  display: flex;
  justify-content: center;
  padding: 10px;
  background-color: #494646;
  border-radius: 10px;
  margin: 20px;
  box-shadow: 0 0 10px #444;
}

.score {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  font-size: 2vw;
  color: #e5e5e4;
  background-color: #494646;
  padding: 15px;
  border-radius: 10px;
  margin: 20px;
}

@media (max-width: 600px) {
  .title {
    font-size: 8vw;
  }
  button {
    font-size: 14vw;
    padding: 8px 14px;
  }
  .you {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 4vw;
  }
  .result {
    font-size: 6vw;
  }
  .score {
    font-size: 6vw;
  }
}
