body {
  background-color: rgb(245, 251, 251);
}
.container {
  margin: 120px auto;
  max-width: 600px;
}
header {
  margin-bottom: 30px;
}
h1 {
  text-align: center;
  margin-bottom: 30px;
}
h4 {
  text-align: center;
  font-style: italic;
}
form {
  padding: 20px 10px;
  background-color: rgb(228, 250, 254);
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: 30px auto;
}
a {
  color: rgb(178, 72, 239);
}
.input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}
input {
  padding: 12px;
  width: 95%;
  border-radius: 5px;
  border: none;
  line-height: 1.5;
  font-size: 14px;
}
label {
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.7;
}
.submit-button {
  font-size: 16px;
  font-weight: 600;
  padding: 14px auto;
  width: 120px;
  background-color: rgb(178, 72, 239);
  color: rgb(228, 250, 254);
}
.gem-descriptions {
  font-size: 16px;
  background-color: rgb(228, 250, 254);
  padding: 20px;
  line-height: 1.5;
  border-radius: 5px;
}
.hidden {
  display: none;
}
footer {
  text-align: center;
  font-size: 12px;
  margin-top: 30px;
}
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #333; /* Dot color */
  border-radius: 50%;
  margin: 0 5px; /* Spacing between dots */
  animation: bounce 1s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.2s; /* Delay for the second dot */
}

.dot:nth-child(3) {
  animation-delay: 0.4s; /* Delay for the third dot */
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* How high the dots bounce */
  }
}
