* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Start code to make footer work */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wp-site-blocks {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.entry-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
/* End code to make footer work */

/* Navigation */
nav {
    font-family: "Varela Round";
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
}

nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px; /* line thickness */
    background: linear-gradient(to right, #FFA0C6, #FFDC92);
}

.logo {
    display: flex;
    font-family: "Varela Round";
    font-size: 35px;
    font-weight: 1000;
    letter-spacing: 4px;
}

.logo-footer {
    display: flex;
    font-family: "Varela Round";
    font-weight: 1000;
    font-size: 25px;
    justify-content: center;
    letter-spacing: 1px;
}

.logo span {
    display: inline-block;
    transition: transform 0.3s ease;

    transform: scale(1.2);
}

.logo span:hover {
    transform: scale(1.2) rotate(-5deg);
}

.btn {
    font-family: "Varela Round", sans-serif;
    font-weight: 800;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;

    color: #33CB82;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, #19A2AF, #A5E48C) border-box;
}

.btn:hover {
    background: linear-gradient(#fafafa, #fafafa) padding-box,
                linear-gradient(to right, #19A2AF, #A5E48C) border-box;
}

.gradient-real-text {
    background: linear-gradient(to right, #FF6BBF, #FFD85E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-cash-text {
    background: linear-gradient(to right, #0398AF, #77D55B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FONTS */
.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.small-open-sans {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

.small-open-sans a {
    color: black;
}

.front-page-container {
   margin-left: 20px;
   margin-right: 20px; 
}

.tagline-container { 
    margin-top: 15px;
}

.bottom-tagline-container {
    margin-bottom: 20px;
}

.images-wrapper {
    margin-bottom: 20px;
}

.tagline {
    font-size: 35px;
    letter-spacing: -1.2px;
    line-height: 1.2;
    color: #3D3D3D;
}

.capybara-phone {
    display: none;
}

.quiz-example {
    display: block;
    width: 80%;
    margin-top: 35px;
    margin-right: auto;
    margin-left: auto;
}

.capybara-earning {
    display: block;
    width: 77%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
}

.features-list {
    display: table;
    margin: 0 auto;
    text-align: left;

    font-family: "Open Sans", sans-serif;
    font-size: 14px;

    margin-bottom: 20px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.start-earning-container {
    margin-bottom: 20px;
}

.start-earning-btn {
    display: block;
    width: 80%;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
}

.front-page-bg {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -999;
}

footer {
    background-color: #F7ECF1;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Desktop style overrides */
@media (min-width: 768px) {
    .tagline-container {
        margin-top: 0px;
        padding-left: 20px;
        padding-top: 30px;
    }

    .tagline-container .small-open-sans {
        font-size: 1.7vw;
    }

    .tagline {
        font-size: 4vw;
        margin-right: 40vw;
    }

    .images-wrapper {
        height: 30vw;
        margin-bottom: 0px;
    }

    .images-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .images-container img {
        position: absolute;
    }

    .images-container .small-open-sans {
        position: absolute;
        left: 43.5%;
        top: 80%;
        font-size: 1vw;
    }

    .capybara-phone {
        display: block;
        left: -9%;
        top: 0.5%;
        width: 40%;
    }

    .quiz-example {
        left: 37%;
        width: 25%;
    }

    .capybara-earning {
        width: 35%;
        left: 65%;
        bottom: 0%;
    }

    .start-earning-btn {
        width: 25%;
        left: 37%;
        top: 55%;
    }

    .before-footer {
        margin-top: -4vw;
    }
}

/* @media (min-width: 768px) and (max-width: 1000px) {
    .images-container .small-open-sans {
        top: 45%;
    }
} */