button {
  background-color: #f8f9fb;
  border: 2px solid #312e42;
  border-radius: 5%;
  margin: 10px 0;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #cddffb;
}

div {
  text-align: center;
  background-color: #cddffb;
}

.main-container {
  padding: 10px 20px;
  max-width: 400px;
}

.animated {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}

.animated.visible {
  opacity: 1;
  max-height: 500px;
  margin: 1rem 0 1rem 0;
  transform: translateY(0);
}

.move-up {
  transform: translateY(-30px);
}

.move-down {
  transform: translateY(30px);
}

.symbol-styling {
  font-size: 2rem;
  font-weight: bold;
  padding: 0.5rem;
  line-height: 1; /* removes extra bottom gap */
}

.name-and-reason-styling {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: #444;
}

@media (min-width: 640px) {
  body {
    background-color: #1f75fe;
  }
  .main-container {
    border: 4px solid #42382e;
    border-radius: 4%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}
