.onboarding-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
}
  
  .onboarding-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .onboarding-topic {
    width: 50%;
    max-width: 250px;
    margin: 10px;
    padding: 20px;
    background: linear-gradient(104.89deg, #00DFFF 10.5%, #00B1FF 51.01%, #0088ED 89.5%);
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0px 3px 3px #535353
    
}
  
  .onboarding-section h1 {
        font-size: 2.5em;
        margin-bottom: 5px;
        text-align: center;
        color: #00dfff;
        font-family: 'Proxima-Nova-Bold', sans-serif;
  }

  @keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#animated-gradient {
    background: linear-gradient(-45deg, #00dfff, #00b1ff, #0088ed, #00ffaf);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 7s ease infinite;
}


  .onboarding-section h3 {
    font-size: 1.5em;
    margin-top: 5px;
    text-align: center;
    color: white;
    font-family: 'Gotham-light', sans-serif;
    font-weight: 200;
  }

  .onboarding-topic h2 {
    margin: 10px 0;
    color: #000000;
    font-size: 1.5em;
  }
  
  .onboarding-image {
    height: auto;
    width: 100%;
    margin: 25px auto;
    text-align: center;
}

  .onboarding-topic p {
    color: #000000;
    font-size: 100%;
    margin: 5px 10px 30px;
    font-family: 'Gotham-medium', sans-serif;
}

.onboarding-button {
    padding: 10px 20px;
    background-color: #000;
    color: white;
    border: 0.5px solid white;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
    font-weight: 350;
    line-height: 20px;
    letter-spacing: 0.1px;
    width: 80%;
    height: auto;
    text-align: center;
    font-family: 'Gotham-medium', sans-serif;
    box-shadow: 2px 2px 10px #000;
}
  
  .onboarding-button:hover {
    color: #00ffaf;
    transition: 1.0s ease-out;
    
  }

  .onboarding-topic:hover {
    transform: scale(1.05);
  }


  /* Fade-out effect */
.onboarding-exit {
    transition: opacity 0.5s ease-out;
    opacity: 0;
}

#suggestionBox {
  display: none;
  text-align: center;
}
  
  /* USER RESPONSE OPTIONS */
.options-button {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid white;
    margin: 5px 5px 10px 5px;
    min-width: 100px;
    font-weight: 400;
    font-size: 1.0em;
    background: linear-gradient(-45deg, #00dfff, #00b1ff, #0088ed, #00ffaf);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text ;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 7s ease infinite;
}

.options-button:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* Our happy green */
    -webkit-text-fill-color: #00ffaf;
}

@keyframes jiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.img-jiggle:hover {
  animation: jiggle 0.5s 3;
}

@media screen and (max-width: 768px) {
.onboarding-topic p {
  display: none;
}

.onboarding-section h1 {
  font-size: 2em;
}

.onboarding-image {
    margin: 0;
}

.onboarding-topic {
  width: 30%;
  max-width: 150px;
}

.onboarding-topic h2{
  font-size: 0.8em;
}

.onboarding-button {
  font-size: 0.6em;
  width: 100%;
  padding: 5px;
}
}

@media screen and (max-width: 380px) {
  .onboarding-section {
    padding: 3px;
  }

.onboarding-section h3 {
  font-size: 5vw;
}

.onboarding-topic h2 {
  font-size: 0.7em;
}

  /*.onboarding-topic {
    width: 30%;
    max-width: 150px;
  }

  .onboarding-topic h2{
    font-size: .75em;
  }

  .onboarding-button {
    font-size: .5em;
    width: 100%;
}*/
  }
