:root {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(36, 36, 38);
}

.main-card {
  margin: auto;
  position: relative;
  background-color: rgb(225, 215, 27);
  height: 30rem;
  width: 40%;
  border-radius: 20px;
}

h1 {
  padding: 2rem;
  color: black;
  text-align: center;
  text-transform: uppercase;
}
h2 {
  color: white;
  text-align: center;
}
.inputs-area {
  height: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
input {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  width: 10rem;
  text-align: center;
  height: 2rem;
}
.send-button {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 80%;
  text-align: center;
  border: none;
  color: white;
  font-weight: 700;
  background-color: crimson;
  transition: 0.2s ease-in-out;
}
.send-button:hover {
  scale: 1.05;
  background-color: rgb(183, 12, 46);
}
.results {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.info-message {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  width: 80%;
  font-weight: 500;
  padding: 0;
  margin: 0;
  margin-top: 3rem;
  text-align: center;
}
.results div {
  text-align: center;
  width: 40%;
  margin: auto;
  color: white;
  background-color: rgb(95, 57, 131);
  border-radius: 20px;
}

@media (max-width: 1700px) {
  .main-card {
    width: 90%;
  }
  .results div {
    width: 90%;
  }
}
