.background {
    /* background-image: url('thought-catalog-UK78i6vK3sc-unsplash (1).jpg'); */
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: fixed;
    top: -5%;
    left: -5%;
    width: 120%;
    height: 120%;
    z-index: -1;
    filter: blur(4px);
    /* overflow: hidden; */
}

.overlay {
    background-color: rgba(75, 75, 75, 0.2);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: fixed;
    top: -5%;
    left: -5%;
    width: 120%;
    height: 120%;
    z-index: -1;
    /* overflow: hidden; */
    /* filter: blur(4px); */
}

body {
    font-family: 'Exo 2', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    flex-wrap: wrap;
    font-size: 28px;   
}

/* .hide-overflow {
    overflow: hidden;
} */

.content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    /* overflow: hidden; */
}

.content-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10vh; /* You can adjust this value */
    background: linear-gradient(to top, rgb(255, 0, 255, 0.7), rgb(255, 0, 255, 0)); /* You can adjust the colors and opacity */
    pointer-events: none; /* Makes the gradient non-interactive */
    z-index: 1; /* Makes sure the gradient appears above the content */
}


iframe.survey {
    background-color: #009b9b;
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

header {
    text-align: center;
    color: #e2ebf3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

h1 {
    font-family: 'Exo 2', sans-serif;
    font-weight: lighter;
    font-size: 42px;
    margin-bottom: 0px;
    color: #ffffff;
}

h1.second-header {
    font-size: 36px;
    margin-top: 5px;
}

h3 {
    font-size: 28px;
    margin: 5px;
}

a.logo-link {
    display: inline-block;
    margin-bottom: 30px;
}

.content p {
    margin: 20px 0;
}

.content {
    position: absolute;  /* Add this line */
    padding-top: 20vh;           /* Add this line */
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    color: #ffffff;
    /* padding: 0 20px; */
}

a.cta {
    display: inline-block;
    color: #fff;
    background-color: #00ffff;
    padding: 7px 70px;
    border-radius: 3px;
    text-decoration: none;
    margin: 10% 0;
}

a.cta:hover {
    background-color: #007a7a;
}

a {
    color: #00ffff;
    text-decoration: none;
}

footer {
    font-size: 0.8em;
    text-align: center;
    padding: 20px 0;
    background-color: rgba(224, 231, 238, 0.5);
    z-index: 1;
}

footer p:not(:last-child){
    margin-bottom: 10px;
}

.keyword {
    color: #ff00ff;
}

/* logoo rotated 15 degrees */
/* Define the bounce animation */
@keyframes bounce {
    0%, 100% {
      transform: translateY(0) rotate(-10deg);
    }
    50% {
      transform: translateY(-5px) rotate(-10deg);
    }
  }
  
/* Apply the animation to the .logoo class */
.logoo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    transform: rotate(-10deg);
    animation: bounce 2s infinite;  /* 1.5s duration, infinite repetition */
}
  

.email-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10% 0;
    flex-direction: row;
}

.email-input {
    padding: 10px;
    border-radius: 2px;
    border: none;
    margin-right: 5px;
    padding-left: 15px;
    flex-grow: 0;
    width: 45%;
    font-size: 20px;
    font-family: 'Exo 2', sans-serif;
    font-weight: lighter;
}

.second-email-form {
    margin: 100px;
}

button.cta {
    display: flex;  /* Make this a flex container */
    align-items: center;  /* Vertically center the items */
    justify-content: center;  /* Horizontally center the items */
    padding: 15px 15px;
    background-color: #00ffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    width: 35%;
    font-size: 20px;
    font-family: 'Exo 2', sans-serif;
}

.button-logo {
    margin-right: 20px;  /* Adjust this value to control the distance to the text */
    width: 30px;
    height: auto;
    vertical-align: middle;
}



button.cta:hover {
    background-color: #009999;
}




.more-info {
    background-color: #92ffff;
    padding-right: 10%;
    padding-left: 10%;
}

.fullscreen-header {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-indicator {
    text-align: center;
    padding: 20px;
    color: #fff;
}

.scroll-indicator img {
    width: 5vh;
    height: auto;
}

/* Feature Section */
#features h2 {
    text-align: center;
    font-size: 36px;
    padding-bottom: 40px;
    margin-bottom: 30px;
    color: #000000;
    padding-top: 6vh;
    margin: 0 5vh;
    margin-top: 0px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2vh;
    padding: 2vh 9vh;
    color: #000000;
}

.feature-icon {
    width: 80px;
    height: 80px;
}

.feature-text {
    flex: 1;
    font-size: 24px;
    margin: 0 20px;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}


/* Testimonial Section */
#testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    padding-bottom: 40px;
    color: #000000;
    padding-top: 3vh;
    margin: 0 5vh;
    margin-top: 0px;
}

.testimonials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2vh;
    padding: 2vh 9vh;
    color: #000000;
}

.testimonials-icon {
    width: 80px;
    height: 80px;
}

.testimonials-text {
    flex: 1;
    font-size: 24px;
    margin: 0 20px;
    color: #000000;
}

/* Join Waitlist Section */
#join {
    text-align: center;
    padding: 20px;
    color: #000000;
    /* background-color: rgba(0,0,0,0.6); */
}

#join h2 {
    font-size: 32px;
    margin: 0 5vh;
    margin-top: 0px;
    margin-bottom: 20px;
}

/* Default styles for small devices */
@media (max-width: 600px) {

 
    body {
        font-size: 18px;
    }

    .background {
        filter: none;
    }

    header {
        margin: 0px;
    }

    h1 {
        font-size: 26px;
        margin-top: 0px;
    }

    h1.second-header {
        font-size: 22px;
        margin-top: 10px;
    }

    .logoo {
        width: 20vh;
        height: 20vh;
    }

    .content {
        padding-bottom: 40%;
    }

    .email-form {
        flex-direction: column;
    }

    .email-input {
        box-sizing: border-box;
        text-align: center;
        padding: 10px;
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
        font-size: 18px;
        
    }

    button.cta {
        box-sizing: border-box;
        width: 100%;
        font-size: 18px;
        margin: 0px;
    }

    .feature p {
        margin: 0px;
    }

    .testimonials h2{
        padding: 0px;
    }

    .testimonials p{
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .testimonials p.right{
        padding-bottom: 20px;
    }

    .more-info {
        padding: 0px;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        width: 4vh;
        height: 4vh;
        margin-bottom: 0px;
        margin-top: 20px;
    }
    
    .feature-text {
        margin: 0;
    }

    .scroll-indicator {
        padding: 0px;
    }

    .scroll-indicator p {
        margin: 5px;
    }
    

    .feature-text{
        font-size: 18px;
        margin: 0px;
    }
    

    .testimonials, .feature {
        padding-top: 0%;
        padding-bottom: 0%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .testimonials-text{
        font-size: 18px;
        margin: 0px;
    }
    
}

/* Styles for large devices */
@media (min-width: 769px) {
    .feature {
        flex-direction: row;
    }
    .feature-icon.left {
        margin-right: 20px;
    }
    .feature-icon.right {
        margin-left: 20px;
    }
}

/* line styling. Not full page width, gradient */
.line {
    background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1), rgba(0,0,0,0));
    height: 1px;
    width: 80%;
    margin: 4vh auto;
}