:root {
  --primary-color: #ff2f63;
  --secondary-color: #403d84;
  --background-gradient: linear-gradient(45deg, #052428, #4f086a);
  --text-color: #ffffff;
  --placeholder-color: #dddddd;
}

* {
  margin: 0;
  padding: 0;
  font-family: sans-serif, serif;
  box-sizing: border-box;
}

.hero {
  width: 100%;
  min-height: 100vh;
  background: var(--background-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-color);
}

.hero h1 {
  font-size: 45px;
  font-weight: 500;
  margin-top: -50px;
  margin-bottom: 50px;
}

.hero h1 span {
  color: var(--primary-color);
}

textarea {
  width: 600px;
  height: 250px;
  background: var(--secondary-color);
  color: var(--text-color);
  font-size: 18px;
  border: 0;
  outline: 0;
  padding: 20px;
  border-radius: 10px;
  resize: none;
  margin-bottom: 30px;
}

textarea::placeholder {
  font-size: 18px;
  color: var(--placeholder-color);
}

.row {
  width: 600px;
  display: flex;
  align-items: center;
  gap: 20px;
}

button {
  background: var(--primary-color);
  color: var(--text-color);
  font-size: 16px;
  padding: 10px 30px;
  border-radius: 40px;
  border: 0;
  outline: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

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

select {
  flex: 1;
  color: var(--text-color);
  background: var(--secondary-color);
  height: 50px;
  padding: 0 20px;
  outline: 0;
  border: 0;
  border-radius: 40px;
  appearance: none;
  background-image: url(images/down_arrow.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position-x: calc(100% - 20px);
  background-position-y: 20px;
}

/* Media Queries for Mobile Screens */
@media (max-width: 568px) {
  .hero h1 {
    font-size: 30px;
    margin-top: -30px;
    margin-bottom: 30px;
  }

  textarea {
    width: 90%;
    height: 200px;
    font-size: 16px;
  }

  textarea::placeholder {
    font-size: 16px;
  }

  .row {
    flex-direction: column;
    width: 90%;
    height: 100px;
  }

  button {
    width: 40%;
    justify-content: center;
    padding: 10px;
  }

  select {
    width: 98%;
    background-position: right 20px center;
  }
}
