:root {
    --color-primary: #1d005f; /* used for buttons, links, and form elements */
    /*
    --color-secondary is used for text color
    --color-tertiary is used for backgrounds of certain elements
    */
    font-size: 11px;
}

body {
    margin: 0;
    background-color: #ed00ed;
}

/* layout */

.gradient-background {
    background: url("/static/images/webpages/wundr-hero-gradient-poster-00001.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Change from fixed to scroll */
    min-height: 100vh;
}

.no-padding-container {
    padding: 0 !important;
}

.no-margin-container {
    margin: 0 !important;
}

.main-container {
    max-width: 100% !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    min-height: 100vh;
}

.main-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3em !important;
}

.img-container {
    position: sticky;
    top: 0;
    width: 50%;
    height: 100vh;
    overflow: hidden;
}

.img-container .img-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.wundr-logo {
    max-width: 300px;
    margin-bottom: 2rem !important;
    margin: auto;
}

h1 {
    font-size: 3.6rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 3rem;
}

.card {
    background-color: white;
    color: #0a1f2f;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px 13px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.card h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.card p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.wundr-logo-text {
    color: #0a1f2f;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    :root {
        font-size: 9px;
    }
    .img-container {
        display: none !important;
    }

    .main-content-container {
        padding: 1rem !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .card {
        padding: 2rem !important;
    }
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Adjust as needed */
}