@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');

::-webkit-scrollbar {
    display: none;
}

html, body, section {
    block-size: 100%;
  }
  
  html {
    scroll-snap-type: y mandatory;
  }
  
  section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  section:nth-of-type(even) {
    color: #24252A;
    background: antiquewhite;
  }
  
  section:nth-of-type(odd) {
    color: antiquewhite;
    background: #24252A;
  }
  
  body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
  }

  button {
    padding: 18px 50px;
    background-color: rgba(0,136,169,1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #edf0f1;
    text-decoration: none; 
}

button:hover {
    background-color: rgba(0,136,169,0.8);
}

.fade-in-text {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    color: antiquewhite;
    animation: fadeIn linear 15s;
    -webkit-animation: fadeIn linear 15s;
    -moz-animation: fadeIn linear 15s;
    -o-animation: fadeIn linear 15s;
    -ms-animation: fadeIn linear 15s;
  }

  .fade-in-text-2 {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    color: #24252A;
    animation: fadeIn linear 15s;
    -webkit-animation: fadeIn linear 15s;
    -moz-animation: fadeIn linear 15s;
    -o-animation: fadeIn linear 15s;
    -ms-animation: fadeIn linear 15s;
  }
  
  @keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }

  @keyframes uparrow {
    0% { -webkit-transform: translateY(0); opacity: 0.4 }
    100% { -webkit-transform: translateY(-0.4em); opacity: 0.9 }
  }
  @keyframes downarrow {
    0% { -webkit-transform: translateY(0); opacity: 0.4 }
    100% { -webkit-transform: translateY(0.4em); opacity: 0.9 }
  }
  
  .container {
    bottom:20px;
    position:absolute;
  }
  .arrow { 
    border-color: transparent;
    border-style: solid;
    border-width: 25px;
    display: block; 
    height: 0px;
    opacity: 0.4;
    text-indent: -9999px; 
  }
  .up {
    animation: uparrow 0.6s infinite alternate ease-in-out;
    border-bottom:1em solid antiquewhite;
  }
  .down {
    animation: downarrow 0.6s infinite alternate ease-in-out;
    border-top:1em solid antiquewhite;
  }
  