@import url("https://fonts.googleapis.com/css?family=Cactus Classical Serif");
@import url("https://fonts.googleapis.com/css?family=Inter");
@import url('footer.css');
@import url('menu.css');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  text-decoration: none;

}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 5vh;
}

.contact-form-title {
  font-family: "Cactus Classical Serif";
  padding: 2vh;
}

.contact-form-form {
  display: flex;
  flex-direction: column;
  background-color: #F7C4E5;
  padding: 5vh 10vw;
  align-self: center;
  border-radius: 5%;
}

.contact-form-form h3 {
  font-family: "Cactus Classical Serif";
  padding: 0 0 2vh 0;
  font-family: 'Inter';
}

.contact-form-form textarea:hover {
  background-color: #d1d2d3;
}

/* form inputs */
input[type=text], textarea {
  font-family: 'Inter';
  width: 50vw;
  padding: 1vmin;
  border: 0.5px solid #9BABC1;
  border-radius: 8px;
}

input[type=text]:hover {
  background-color: #d1d2d3;
}

input[type=submite] {
  padding: 1vmin;
  border: 0.5px solid #9BABC1;
  border-radius: 8px;
  width: 7rem;
  cursor: pointer;
  text-align: center;
}

/* Footer */
footer {
  background-color: #8a9eab;
  padding: 1.5vmin;
  text-align: center;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 3vw;
  margin-bottom: 2vh;
}

.social-icons img {
  width: 4vmin;
  height: 4vmin;
}

footer p {
  font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 600px) {
  .information {
    flex-direction: column;
  }

  .information-img {
    align-self: center;
  }
}