@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/manrope-v15-latin-regular.woff2') format('woff2'),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('../fonts/manrope-v15-latin-regular.ttf') format('truetype');
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

* {
  font-family: 'Manrope' !important;
}

/*
 #wrapper {
            height: 50vh;  
            width: 70vw; 
        }
  
#payoff p {
    
}

*/

body,
html {
  height: 100%;
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: url('../img/background2.jpg') no-repeat center left fixed;
  background-size: cover;
  position: relative;
  color: white;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.80);
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .overlay {
    background: rgba(0, 0, 0, 0.70);

  }
}

.content {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

#logo {
  max-width: 300px;
  height: auto;
}

#payoff {
  display: block !important;
  margin-top: 10vh !important;
  text-align: center !important;
  font-size: clamp(22px, 3vw, 40px) !important;
  font-size: 18px !important;

}