@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

body {
    background: #B3F1FF;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

a {
    color: #1a1a1a;
    text-decoration: none;
}

.gradient-bg {
    background: linear-gradient(180deg, #AFF0FF 0%, #E9FBFF 100%);
}

.menu {
    border-radius: 50%;
    height: 80px;
    width: 80px;
    padding: 0px 25px;
    cursor: pointer;
    z-index: 10;
}

.menu > div {
    width: 30px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
}

.cursor-pointer {
    cursor: pointer;
}

/* Menu bar */
/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */   
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 11; /* Sit on top */
    left: 0;
    top: 0;
    background-color: #B3F1FF; /* Black fallback color */
    background-color: rgba(243, 250, 251, 0.903); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
  }
  
  /* Position the content inside the overlay */
  .overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
  }
  
  /* The navigation links inside the overlay */
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #1a1a1a;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
  }
  
  /* When you mouse over the navigation links, change their color */
  .overlay a:hover, .overlay a:focus {
    color: #5b5b5b;
  }
  
  /* Position the close button (top right corner) */
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }
  
  /* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
  @media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
  }
/* End menu */

.social-round {
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    margin: 0px 5px;
}

.social-pill {
    background-color: white;
    border-radius: 2rem;
    padding: 10px 20px;
    font-size: 25px;
}

.navigation {
    background-color: white;
    border-radius: 2rem;
    padding: 0px 20px;
    display: flex;
    justify-content: space-evenly;
    font-size: 20px;
    z-index: 11 !important;
}

.navigation > a {
    z-index: 11;
}

.header {
    position: relative;
    margin-top: -40px;
    padding: 0 10%;
}

.header > img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.header > .text {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1 !important;
}

.header-title {
    font-size: 4.5rem;
    z-index: 1 !important;
}

.header-sub {
    font-size: 2rem;
    z-index: 1 !important;
}

.header-button {
    background: linear-gradient(91.87deg, #D4B3FF 0%, #B3F1FF 97.06%);
    border-radius: 2rem;
    padding: 10px 20px;
    font-size: 35px;
    cursor: pointer;
    z-index: 2;
    border: 3px solid #B3C8FF;
    box-sizing: border-box;
    box-shadow: -3px 5px 0px #B3C8FF;
}

.intro, .hiw, .story {
    background: linear-gradient(180deg, #AFF0FF 0%, #E9FBFF 100%);
}

.cta {
    background: linear-gradient(180deg, #E9FBFF 0%, #AFF0FF 100%);
}

.hiw, .story, .cta {
    padding: 0px 50px;
}

.hiw-image {
    border-radius: 15px;
    width: 100%;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #B3C8FF;
    padding: 5% 20%;
}

.app-ui {
    border-radius: 60px;
}

.rainbow-bg {
    background-image: url('./media/rainbow-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.roadmap {
    background-color: white;
    border-radius: 15px;
}

.roadmap > h5 {
    padding-left: 15px;
}


@media only screen and (min-width: 768px) {
    .mt-md-n5 {
        margin-top: -12rem;
    }
}

.roadmap-left {
    position: absolute;
    top: 50%;
    left: -5px;
    transform: rotate(-90deg);
    letter-spacing: 2px;
    font-weight: 800;
}

.roadmap-right {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: rotate(90deg);
    letter-spacing: 2px;
    font-weight: 800;
}

