@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.3s ease-in-out;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #611ef5;
    --bg: #190e49;
    --bg-dull: #1f125b;
    --bg-tint: #311b92;
    --tint: #d1c4e9;
}

body {
    font-family: "Montserrat", sans-serif;
    color: white;
    background: #190e49;
}

.short-rule {
    width: 100px;
    height: 10px;
    border-radius: 40px;
    background: linear-gradient(to right, pink, skyblue);
}

.super-head {
    font-size: 200px;
    font-weight: 800;
    background: linear-gradient(45deg, #3283ff, #719cc8, skyblue, #8c8bba);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.super-mini-head {
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(0deg, violet, pink, pink, skyblue, skyblue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    text-align: center;
}

.head {
    font-size: 45px;
    font-weight: 800;
    color: white;
    text-transform: capitalize;
}

@media (max-width: 1000px) {
    .super-head {
        font-size: 120px;
    }

    .super-mini-head {
        font-size: 50px;
        text-align: center;
    }
    .head {
        font-size: 30px;
    }
}

@media (max-width: 650px) {
    .super-head {
        font-size: 60px;
    }
    .super-mini-head {
        font-size: 30px;
        text-align: center;
    }

    .head {
        font-size: 20px;
        text-align: center;
    }
}

.question-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgb(0, 0, 30);
    padding: 25px 20px;
    border-radius: 15px;
    cursor: pointer;
}

.question-item-open {
    background: var(--primary);
}

.question-item-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
}

.question-item-question i {
    font-size: 30px;
}

.question-item-answer h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 550px) {
    .question-item {
        padding: 20px;
    }

    .question-item-question {
        font-size: 16px;
    }

    .question-item-answer h4 {
        font-size: 14px;
    }
}

.marketing-bubble-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    height: 40vw;
    width: 40vw;
    background: linear-gradient(
        to bottom,
        skyblue,
        var(--primary),
        var(--bg-tint),
        var(--bg-dull),
        skyblue,
        skyblue,
        crimson
    );
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.marketing-bubble-2 {
    position: absolute;
    top: -10%;
    right: 0%;
    height: 40vw;
    width: 40vw;
    background: linear-gradient(
        to bottom,
        skyblue,
        pink,
        crimson,
        var(--primary),
        skyblue,
        skyblue,
        var(--bg-tint),
        var(--bg-dull)
    );
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

@media (max-width: 500px) {
    .marketing-bubble-1 {
        top: 0;
        left: 0%;
        width: 60vw;
        opacity: 0.6;
        filter: blur(50px);
    }

    .marketing-bubble-2 {
        top: 0;
        right: 0%;
        width: 60vw;
        opacity: 0.6;
        filter: blur(50px);
    }
}
