/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
/* General Reset and Global Styles */

* {
  padding: 0;
  margin: 0;
  font-family: "Poppins";
  box-sizing: border-box;
}
/* Hero section */
.hero {
  background-color: rgb(26, 24, 24);
  width: 100%;
  min-height: 100vh;
  display: flex;
  color: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
}

.hero h1 {
  font-size: 45px;
  font-weight: 600;
  margin-top: -50px;
  margin-bottom: 50px;
}

.hero h1 span {
  color: #d83d3d;
}
/* Textarea section */
textarea {
  height: 250px;
  width: 600px;
  border: none;
  border-radius: 20px;
  padding: 20px;
  font-size: 20px;
  outline: none;
  resize: none;
  margin-bottom: 20px;
  background-color: #353535;
  color: #fff;
}

textarea::placeholder {
  font-size: 16px;
  color: #ddd;
}

.row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 600px;
}
/* Button section */
button {
  background-color: #353535;
  color: #fff;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 10px 30px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

button img {
  width: 16px;
  margin-right: 10px;
}

select {
  background-color: #353535;
  outline: none;
  border: none;
  padding: 0 20px;
  border-radius: 35px;
  flex: 1;
  height: 50px;
  color: #fff;
  background-image: url(/assets/images/dropdown.png);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 20px);
  background-position-y: 20px;
  appearance: none;
  background-size: 15px;
}
