:root {
    --logo-shadow-color: #4933780e;
}

.home-banner {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.row-adjust {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.home-banner img {
    width: 24rem;
    height: 24rem;
    object-fit: contain;
    cursor: pointer;
    user-select: none;
}

.home-information {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.home-title {
    font-weight: 600;
}

.home-title p {
    font-size: 2em;
    color: var(--quarternary-color);
}

.home-title strong {
    font-size: 5em;
    color: var(--secondary-color);
}

.home-title h1 {
    font-size: 4em;
    color: var(--tertiary-color);
}

.home-description {
    max-width: 42rem;
    font-size: 1.5em;
}

.home-description span {
    color: var(--secondary-color);
}

.home-buttons {
    width: fit-content;
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    padding-top: 1rem;
}

.download-button,
.telegram-button {
    height: 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.2em;
    font-weight: 500;
    text-wrap: nowrap;
    text-decoration: none;
    cursor: pointer;
    gap: 0.5rem;
    border-radius: 0.5rem;
    padding-left: 0.125rem;
    padding-right: 0.5rem;
}

.download-button {
    outline: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background-color: transparent;
}

.download-button div {
    background-color: var(--secondary-color);
}

.download-button:hover {
    color: var(--sextenary-color);
    background-color: var(--secondary-color);
}

.download-button:hover div {
    background-color: var(--sextenary-color);
}

.download-button:hover div i {
    color: var(--secondary-color);
}

.telegram-button {
    outline: 2px solid var(--tertiary-color);
    text-decoration: none;
    color: var(--tertiary-color);
}

.telegram-button div {
    background-color: var(--tertiary-color);
}

.telegram-button div i {
    color: var(--sextenary-color);
    line-height: 1rem;
}

.telegram-button:hover {
    color: var(--sextenary-color);
    background-color: var(--tertiary-color);
}

.telegram-button:hover div {
    background-color: var(--sextenary-color);
}

.telegram-button:hover div i {
    color: var(--tertiary-color);
}
.download-button div, .telegram-button div{
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.375rem;
}

.download-button div i {
    font-size: 2.25rem;
    line-height: 1rem;
    color: var(--sextenary-color);
}

@media (max-width: 768px) {
    .row-adjust {
        flex-direction: column-reverse;
    }

    .home-banner img {
        width: 18rem;
        height: 18rem;
    }

    .home-information {
        align-items: center;
    }

    .home-title {
        text-align: center;
    }

    .home-title strong {
        font-size: 3em; 
    }

    .home-title h1 {
        font-size: 2.5em;
    }

    .home-description {
        text-align: center;
    }
}