.contact {
  background-image: url("../images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  gap: 16px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20vh;
  background-color: #f5f5f5;
  border: 1px solid #000;
  border-radius: 32px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 780px) {
  .contact h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .contact {
    width: 95%;
  }
  .contact h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  .contact h1 {
    font-size: 15px;
  }
}
