@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #6482ad;
}

h1 {
  font-size: 3.5rem;
  color: #e2dad6;
}

span {
  font-weight: 400;
  color: black;
}

.container {
  background-color: #f5eded;
  font-size: 2rem;
  width: 600px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: left;
  border-radius: 30px;
  padding: 40px;
}

.choices {
  text-align: center;
  margin-bottom: 50px;
}

.choices button {
  font-size: 7.5rem;
  min-width: 160px;
  margin: 0 10px;
  border-radius: 250px;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
button:hover {
  background-color: #7f92ad;
}

.display {
  padding: 5px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #6482ad;
}

.resetbtn {
  border-radius: 10px;
  font-size: 2rem;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

@media (max-width: 768px) {
  .container {
    width: 300px;
    height: 380px;
    font-size: 1rem;
    padding: 10px;
  }
  .choices {
    text-align: center;
    margin-bottom: 10px;
  }
  .choices button {
    font-size: 2.5rem;
    min-width: 60px;
  }
  h1 {
    font-size: 2.5rem;
  }
}
