@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* font-size: 1rem; */
}

.hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(45deg, #a70c0c, #ff00a2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}

.hero h1 {
  font-size: 2.8125rem;
  font-weight: 500;
  margin-top: -1.125em;
  margin-bottom: 1.125em;
  text-align: center;
}

.hero h1 span {
  color: #a6ff00;
  font-weight: bold;
}

textarea {
  width: 80%;
  max-width: 37.5em;
  height: 250px;
  background: rgb(255, 255, 255, 0.5);
  color: #333;
  font-size: 1rem;
  border: 0;
  outline: 0;
  padding: 20px;
  border-radius: 10px;
  resize: none;
  margin-bottom: 30px;
}

textarea::placeholder {
  font-size: 1rem;
  color: #333;
}

.row {
  width: 80%;
  max-width: 37.5em;
  display: grid;
  grid-template-columns: 4fr 1.25fr;
  gap: 20px;
}

button {
  background: #ff2963;
  color: #fff;
  font-size: 1rem;
  padding: 10px 30px;
  border-radius: 35px;
  border: 0;
  outline: 0;
  cursor: pointer;
  margin: 10px;

}

#click_to_record {
  text-align: center;
  /* width: 300px; */
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;

}

button img {
  width: 12px;
  margin-right: 10px;
}

.hero select {
  width: 30%;
  height: 40px;
  background: rgb(255, 255, 255, 0.5);
  color: #333;
  font-size: 1rem;
  border: 0;
  outline: 0;
  padding: 0 10px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}

select * {
  color: #333;
  background: rgb(255, 255, 255, 0.5);
}

footer {
  /* background-color: #333; */
  color: #fff;
  padding: 20px;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer p {
  font-weight: bold;
  letter-spacing: 3px
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

@media (max-width: 640px) {

  .hero h1 {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    font-size: 2.5rem;
  }

  textarea {
    font-size: 1.25rem;
  }

  textarea::placeholder {
    font-size: 1.25rem;
  }

  select,
  button {
    height: 50px;
  }

  .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  select {
    width: 100%;
  }

  button {
    background: #ff2963;
    color: #fff;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 15px;
    border: 0;
    outline: 0;
    cursor: pointer;
    margin: 10px;

  }

}

.info {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info-socials {
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 0.5em;
}

.info-socials a {
  color: currentColor;
  padding: 0 0.5em;
}