html, body {
    overflow-x: hidden;
    height: 100%;
    margin: 0;
}

header, header * {
    box-sizing: border-box;
}

main {
    flex: 1
}

a {
    text-decoration: none;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
    max-width: 900px;
    margin: 0 auto;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.tagline {
    display: flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 200px;
    border: 1px solid #E5E4FF;
    background: #EDEDFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}

.tagline-text {
    color: var(--primary-500, #6f68fb);
    text-align: left;
    font-family: Manrope, serif;
    font-size: var(--text-2-font-size, 12px);
    line-height: var(--text-2-line-height, 140%);
    font-weight: var(--text-2-font-weight, 700);
    position: relative;
}

.headline {
    box-sizing: border-box;
    text-align: center;
    position: relative;
    align-self: stretch;
}

.headline-span {
    color: #1C1C1C;
    text-align: center;
    font-family: "PT Serif", serif;
    font-size: 72px;
    font-style: italic;
    font-weight: 400;
    line-height: 110%;
}

.headline-span2 {
    color: #1C1C1C;
    font-family: Manrope, serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.headline-span3 {
    color: #6F68FB;
    font-family: Manrope, serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.subheadline {
    color: #4D4E55;
    text-align: center;
    font-family: Manrope, serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    position: relative;
}

.title-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
}

.title-button-green, .title-button-transparent {
    display: flex;
    width: 225px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #1C1C1C;
    border-radius: 48px;
    line-height: 140%;
}

.title-button-green {
    background: #BFF404;
}

.title-button-transparent {
    border: 1px solid #9CA3AF;
}

.button-text-big {
    text-align: center;
    font-family: Manrope, serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    color: var(--black, #1c1c1c);
}

@media (max-width: 768px) {
    .title {
        display: none;
    }

    .title-mobile {
        display: flex;
        width: 100%;
        padding: 0px 16px;
        flex-direction: column;
        align-items: center;;
        gap: 20px;
        align-self: stretch;
        justify-content: flex-start;
        flex-shrink: 0;
        position: relative;
        box-sizing: border-box;
        z-index: 1;
    }

    .tagline-mobile {
        border-radius: 200px;
        border: 1px solid #E5E4FF;
        background: #EDEDFF;
        padding: 8px 24px;
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    }

    .tagline-text-mobile {
        color: #6F68FB;
        font-family: Manrope, serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%;
    }

    .headline-span-mobile {
        color: #1C1C1C;
        text-align: center;
        font-family: "PT Serif", serif;
        font-size: 48px;
        font-style: italic;
        font-weight: 400;
        line-height: 100%;
    }

    .headline-span2-mobile {
        color: #1C1C1C;
        font-family: Manrope, serif;
        font-size: 48px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }

    .headline-span3-mobile {
        color: #6F68FB;
        font-family: Manrope, serif;
        font-size: 48px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }

    .subheadline {
        color: #4D4E55;
        text-align: center;
        font-family: Manrope, serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }

    .title-button-green-mobile, .title-button-transparent-mobile {
        display: flex;
        height: 48px;
        padding: 6px 12px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        align-self: stretch;
        border-radius: 48px;
        color: #1C1C1C;
        text-align: center;
        font-family: Manrope, serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
        border: none;
        cursor: pointer;
        width: 100%;
    }

    .title-button-green-mobile {
        background:#BFF404;
        border-color: #BFF404;
    }

    .title-button-transparent-mobile {
        border: 1px solid #9CA3AF;
    }
}
