:root {
    --title-container-t1-color: rgba(255, 255, 255, 0.7);
    --title-container-t2-color: rgba(255, 255, 255, 0.8);
    --title-container-t3-color: rgba(255, 255, 255, 0.4);
    --title-container-t2-hover-color: rgba(255, 93, 0, 0.8);

    --title-container-btn-background-color: rgba(7, 7, 7, 0.8);
    --title-container-btn-border-color: rgba(255, 255, 255, 0.1);
    --title-container-btn-color: rgba(255, 255, 255, 0.7);
    --title-container-btn-hover-color: rgba(255, 93, 0, 0.7);

    --pulse-text-color-1: rgb(38, 130, 228);
    --pulse-text-color-2: rgb(124, 184, 248);
    --pulse-text-color-3: rgb(38, 130, 228);

    --pulse-animation-duration: 7s;
}

:root[data-theme="light"] {
    /*--title-container-background-color-1: rgb(109, 213, 231);
    --title-container-background-color-2: rgb(104, 176, 218);
    --title-container-background-color-3: rgb(95, 151, 216);

    --lite-container-background-color: rgb(199, 239, 255);
    --lite-container-background-opacity: 0;
    --stats-container-background-color: rgb(255, 255, 255);
    --stats-container-border-color: rgb(158, 158, 158);
    --stats-container-hover-background-color-1: rgb(191, 240, 255);
    --stats-container-hover-background-color-2: rgb(220, 247, 255);
    --stats-container-hover-background-color-3: rgb(191, 240, 255);
    --stats-container-subtext-hover-color: rgb(38, 119, 206);

    --stats-container-icon-color: rgb(96, 157, 214);

    --container-divider-color: rgba(16, 47, 83, 0.1);
    
    --text-color: rgb(15, 23, 42);
    --linktext-color: rgb(170, 170, 170);*/
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: max(100vh, 400px);
    width: 100%;
}

.title-container .head {
    display: flex;
    flex-wrap: nowrap;
    width: 80%;
    margin-top: 200px;
}

.title-container .head .text {
    display: flex;
    flex-direction: column;
    max-width: 700px;
}

.title-container .head .text .t1 {
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 2rem;
    color: var(--title-container-t1-color);
}

.title-container .head .text .t2 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
    color: var(--title-container-t2-color);
    transition: color 0.3s ease, transform 0.4s ease;
}

.title-container .head .text .t3 {
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    color: var(--title-container-t3-color);
    margin-top: 10px;
}

.title-container .head .text:hover .t2 {
    color: var(--title-container-t2-hover-color);
    transform: translateX(10px);
}

.title-container .head .buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    gap: 12px;
}

.title-container .head .buttons .button {
    display: flex;
    background: var(--title-container-btn-background-color);
    border: 1px solid var(--title-container-btn-border-color);
    border-radius: 10px;
    padding: 10px 15px;
    text-decoration: none;
    gap: 7px;
    transition: border-color 0.3s ease;
}

.title-container .head .buttons .button:hover {
    border-color: var(--title-container-btn-hover-color);
}

.title-container .head .buttons .button span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
    color: var(--title-container-btn-color);
    transition: color 0.3s ease;
}

.title-container .head .buttons .button .arrow {
    color: var(--title-container-btn-color);
    margin-left: auto;
    transform: scale(1.4);
    transition: color 0.3s ease, transform 0.4s ease;
}

.title-container .head .buttons .button:hover span, .title-container .head .buttons .button:hover .arrow {
    color: var(--title-container-btn-hover-color);
}

.title-container .head .buttons .button:hover .arrow {
    transform: scale(1.4) translateX(5px);
}

@keyframes pulse {
    40% { background-position: 40% center; }
    100% { background-position: 200% center; }
}

.pulse-text {
    color: transparent;
    background-image: linear-gradient(
        to right,
        var(--pulse-text-color-1), 
        var(--pulse-text-color-2),
        var(--pulse-text-color-3)
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: pulse var(--pulse-animation-duration) linear infinite;
}

@media (max-width: 1200px) {
    .title-container .head {
        flex-wrap: unset;
        flex-direction: column;
    }

    .title-container .head .buttons {
        margin-top: 70px;
        margin-left: unset;
        max-width: 400px;
    }
}

@media (max-width: 800px) {
    .title-container .head {
        align-items: center;
    }

    .title-container .head .buttons {
        width: 100%;
        max-width: unset;
    }
}

@media (max-width: 700px) {
    .title-container .head .text .t1 {
        font-size: 1.2rem;
    }

    .title-container .head .text .t2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .title-container .head .text .t1 {
        font-size: 1rem;
    }

    .title-container .head .text .t2 {
        font-size: 1.4rem;
    }

    .title-container .head .text .t3 {
        font-size: 0.7rem;
    }
}

@media (max-width: 340px) {
    .title-container .head .text .t1 {
        font-size: 0.8rem;
    }

    .title-container .head .text .t2 {
        font-size: 1.1rem;
    }
}