@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: rgba(0, 0, 0, 1);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(/image/hero_bg.webp);
  background-position: bottom center;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
}

.section-logo .slogan, .section-form .slogan, .section-about .slogan {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1.5em;
  text-transform: uppercase;
  max-width: 50%;
  text-shadow: 2px 2px 2px #000000;
}

.section-logo img {
  width: 40%;
}

.form-container {
  max-width: 50%;
  margin: 0 auto;
}

.section-about {
  max-width: 90%;
  margin: 0 auto;
}

.section-logo h1 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 3em;
  text-transform: uppercase;
  color: #FFF;
}

.section-logo p {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  color: #FFF;
  text-shadow: 2px 2px 2px #000000;
}

.section-about p {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 1.1em;
  color: #FFF;
  text-align: left;
  text-shadow: 4px 4px 10px #000000;

}

form {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: #FFF;
}

.form-control {
  background-color: #00000050;
  color: #fff;
}

.form-message {
  text-align: center;
  color: #FFF;
  background-color: darkgreen;
  padding: 5px 10px;
  border-radius: 8px;
  text-transform: uppercase;
}

/* CARDS */

.card {
  background-color: #00000050;
  border: 1px solid #ccc;
}

.card i {
  font-size: 7em;
  color: #FFF;
}

.card p {
  font-size: 1.2em;
  color: #FFF;
}

/* MEDIA */

@media (max-width: 720px) {
  .section-logo p {
    font-size: 20px;
  }

  .section-logo img {
    width: 70%;
  }

  .section-logo .slogan, .section-form .slogan, .section-about .slogan {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 1.5em;
    text-transform: uppercase;
    max-width: 80%;
    text-shadow: 2px 2px 2px #000000;
  }

  .form-container {
    max-width: 80%;
    margin: 0 auto;
  }

  .card-container {
    max-width: 80%;
    margin: 0 auto;
  }

  .card-container .card {
    margin-bottom: 30px;
  }
}

