:root {
    --f3-icon1: #fb326c;
    --f3-icon2: #fdc918;
    --f3-icon3: #5482c9;
}


/* .container {
    max-width: 900px;
    margin: 50px auto;
    background: #000000;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
} */

.title {
    font-weight: bold;
    background: linear-gradient(
        20deg,
        rgba(73, 123, 181, 0.9) 0%,
        rgba(252, 53, 110, 0.9) 50%,
        rgba(255, 180, 64, 0.9) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
    font-size: 70px;
    text-align: center;
    margin-bottom: 5%;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
    .title {
        font-size: 42px !important;
        width: 100%;
    }
}

@media screen and (min-width: 426px) and (max-width: 575px) {
    .title {
        font-size: 54px !important;
        width: 100%;
    }
}

@media screen and (min-width: 576px) and (max-width: 700px) {
    .title {
        font-size: 62px !important;
        width: 100%;
    }
}

@media screen and (min-width: 701px) and (max-width: 1024px) {
    .title {
        font-size: 70px !important;
        width: 100%;
    }
}

@media screen and (min-width: 1025px) {
    .title {
        font-size: 85px !important;
        width: 100%;
    }
}

.heading {
    color: #fb326c;
    padding-bottom: 10px;
    margin-top: 20px;
}

.text {
    font-size: 16px;
    line-height: 1.6;
}

.list {
    padding-left: 20px;
}

.list-item {
    margin-bottom: 8px;
}

.link {
    color: var(--f3-icon1);
    text-decoration: none;
    font-weight: bold;
}

.link:hover {
    text-decoration: underline;
}