html {
  font-size: 62.5%;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* This ensures the body takes at least the full viewport height */
  margin: 0; /* Remove default body margin */
  background: radial-gradient(ellipse, #f9f5f6, #f8e8ee, #fdcedf, #f2bed1);
  font-family: sans-serif;
}

.container {
  /* Optional: Add some max-width if you want to limit how wide it can get */
  max-width: 800px;
  width: 100%;
  padding: 10rem 6rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 128, 175, 0.385);
  gap: 3rem;
}
.button_container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 40%;
}
.button {
  border: none;
  padding: 2rem;
  border-radius: 50%;
  font-size: 1.6rem;
  margin-left: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
#btn1 {
  background-color: #daabbc;
}
#btn2 {
  background-color: #c298a7;
}
#btn3 {
  background-color: #a98592;
}
.button--active {
  transform: scale(1.2);
}
.text_container {
  width: 60%;
}
.text {
  display: none;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
}
.text--active {
  display: block;
}
