@media screen and (min-width: 900px) {
  #main-container {
    max-width: 900px;
    position: absolute !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) translateY(-50%) !important;
            transform: translateX(-50%) translateY(-50%) !important;
  }
  .field-container {
    height: 90px !important;
  }
  .desc {
    top: 25% !important;
    left: 14% !important;
    font-size: 21px !important;
  }
  .field-title {
    top: 49% !important;
    left: 14% !important;
    font-size: 20px !important;
  }
}

body {
  background: #202020;
  margin: 0;
  padding: 0;
  font-size: 1.625rem;
  font: 'Baloo Tamma 2 Bold';
}

body #bg-img {
  height: 100vh;
  width: 100vw;
  background-image: url("../imgs/bg-mobile.jpg");
  background-size: cover;
  background-position: 50%;
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

body #main-container {
  position: relative;
  z-index: 10;
  width: 80vw;
  left: 10vw;
  top: 50vh;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

body #main-container .field-container {
  position: relative;
  height: 11vh;
  width: 100%;
  margin-bottom: 5vh;
}

body #main-container .field-container::before {
  content: '';
  display: block;
  position: absolute;
  opacity: 0.9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #313131;
}

body #main-container .field-container::before:hover {
  opacity: 1;
}

body #main-container .field-container .field-img {
  position: relative;
  top: 10%;
  left: 1.9%;
  height: 80%;
  width: auto;
  opacity: 1;
}

body #main-container .field-container .field-img.full-size {
  top: 0;
  left: 0;
  height: 100%;
}

body #main-container .field-container .desc {
  position: absolute;
  top: 14%;
  left: 23%;
  color: #A5A5A5;
  font-family: "Baloo Tamma 2";
  font-size: 3vw;
  letter-spacing: 0.15em;
  padding: 0;
  margin: 0;
}

body #main-container .field-container .desc.pulse {
  -webkit-animation: pulsing 500ms infinite;
          animation: pulsing 500ms infinite;
}

body #main-container .field-container .field-title {
  position: absolute;
  top: 37%;
  left: 23%;
  color: #E8E8E8;
  font-family: "Baloo Tamma 2";
  font-size: 3.5vw;
  letter-spacing: 0.15em;
  padding: 0;
  margin: 0;
}

.hide {
  display: none;
}

@-webkit-keyframes pulsing {
  0% {
    color: #A5A5A5;
  }
  50% {
    color: #E8E8E8;
  }
  100% {
    color: #A5A5A5;
  }
}

@keyframes pulsing {
  0% {
    color: #A5A5A5;
  }
  50% {
    color: #E8E8E8;
  }
  100% {
    color: #A5A5A5;
  }
}
/*# sourceMappingURL=landingpage_instagram.css.map */