/* @import url("https://fonts.googleapis.com/css2?family=Asap&display=swap"); */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Asap", sans-serif;
  scroll-behavior: smooth;
}

.field-group {
  width: 800px;
  position: relative;
  /* padding-top: 15px; */
}

.input-field {
  width: 100%;
  outline: 0;
  border: 0;
  border-bottom: 2px solid #999999;
  padding: 10px 0;
  background: transparent;
  font-size: 12em;
  color: #ffffff;
  transition: 0.3s ease;
}

.input-field:focus {
  border-image: linear-gradient(to right, #ef5a03, #d1d357);
  border-image-slice: 1;
}

.input-field:focus ~ .input-label {
  display: block;
  position: absolute;
  top: 0;
  font-size: 1em;
  color: #ef5a03;
}

/* If the screen size is 1200px wide or more, set the font-size to 80px */
@media screen and (min-width: 1200px) {
  section {
      height: 100vh;
      width: 100%;
      background-position: top;
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      justify-content: center;
      align-items: center;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
  }

  .responsive-font-example {
      /* font-size: 40px; */
      color: #f87023;
      font-weight: bold;
  }
  #wrap {
      position: relative;
      overflow: hidden;
      /* background: darkblue; */
  }

  i {
      font-size: 40px;
  }
  .icon {
      height: 40px;
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
  }

  .logo {
      max-height: 100px;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
  }

  .myH1 {
      font-size: 40px;
  }

  .myImg {
      max-height: 80vh;
      width: auto;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .myImg-1 {
      max-height: 79vh;
      width: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 5px solid white;
  }
}
/* If the screen size is smaller than 1200px, set the font-size to 80px */
@media screen and (max-width: 1199.98px) {

  section {
      height: 100vh fit-content;
      width: 100%;
      background-position: top;
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      justify-content: center;
      align-items: center;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
  }

  .responsive-font-example {
      font-size: 20px;
      color: #f87023;
      font-weight: bold;
  }
  i {
      font-size: 30px;
  }
  .icon {
      height: 30px;
  }
  .logo {
      height: 80px;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
  }
  .myH1 {
      font-size: 30px;
  }
  .myImg {
      height: auto;
      max-width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  .myImg-1 {
      height: auto;
      max-width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 5px solid white;
  }
}


/*
section:nth-child(1) {
  color: #e0ffff;
}
section:nth-child(2) {
  color: #42455a;
  background: #e0ffff;
}
section:nth-child(3) {
  color: #e0ffff;
}
section:nth-child(4) {
  color: #42455a;
  background: #e0ffff;
}
section:nth-child(5) {
  color: #e0ffff;
}

section h1 {
  font-size: 3rem;
  margin: 20px;
}
section h2 {
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
}
section .text-container {
  display: flex;
}
section .text-container .text-box {
  margin: 20px;
  padding: 20px;
  background: #00c2cb;
}
section .text-container .text-box h3 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  section h1 {
    font-size: 2rem;
    text-align: center;
  }
  section .text-container {
    flex-direction: column;
  }
} */

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}



