html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    color: var(--gt-color);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    overflow-x: hidden;
}

body {
    visibility: hidden;
    opacity: 0;
    background-color: var(--gt-bg);
    transition: opacity 50ms ease-in-out;
}

.gt-container {
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    height: 100dvh;
    max-height: 100dvh;
}

.gt-hero {
    display: flex;
    flex-direction: column;
    grid-column-start: 2;
    grid-row-start: 1;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: start;
    z-index: 10;
}

.gt-caption-spacer {
    display: block;
    height: 7rem;
}

#gt-hero-caption {
    color: var(--gt-color-caption);
    text-align: center;
    font-weight: 900;
    font-size: 2rem;
    margin-top: 6rem;
    margin-bottom: 2rem;
    user-select: none;
}

.gt-hero-downloads {
    display: flex;
}

.gt-hero-downloads-play-store {
    height: 8mm;
    cursor: pointer;
    transition: all 250ms ease-in-out;
}

.gt-hero-downloads-play-store:hover {
    box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.2);
}

.gt-hero-downloads-play-store:active {
    box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.2);
}

.gt-links {
    display: flex;
    grid-column-start: 2;
    grid-row-start: 1;
    align-self: end;
    align-items: end;
    padding-bottom: 3rem;
    z-index: 20;
    justify-content: center;
}

.gt-link {
    display: block;
    text-decoration: none;
}

.gt-link:visited {
    color: var(--gt-link-color);
}

/* sm */
@media (min-width: 640px) {
    .gt-container {
        grid-template-columns: 1fr 8fr 1fr;
    }

    #gt-hero-caption {
        font-size: 2.75rem;
        margin-top: 6rem;
        margin-bottom: 2.2rem;
    }

    .gt-hero-downloads-play-store {
        height: 10mm;
    }
}

/* md */
@media (min-width: 768px) {
    .gt-container {
        grid-template-columns: 2fr 8fr 2fr;
    }

    #gt-hero-caption {
        font-size: 3rem;
        margin-top: 5rem;
        margin-bottom: 2.2rem;
    }

    .gt-hero-downloads-play-store {
        height: 11mm;
    }
}

/* lg */
@media (min-width: 1024px) {
    .gt-container {
        grid-template-columns: 2fr 10fr 2fr;
        height: 100svh;
        max-height: 100svh;
    }

    #gt-hero-caption {
        font-size: 3.5rem;
        margin-top: 7rem;
        margin-bottom: 2.5rem;
    }

    .gt-hero-downloads-play-store {
        height: 13mm;
    }
}

/* xl */
@media (min-width: 1280px) {
    .gt-container {
        grid-template-columns: 2fr 7fr 2fr;
    }

    #gt-hero-caption {
        font-size: 4rem;
        margin-top: 8rem;
        margin-bottom: 3rem;
    }

    .gt-hero-downloads-play-store {
        height: 15mm;
    }
}

/* 2xl */
@media (min-width: 1536px) {
    /* Reserved for future use */
}

/* 3xl */
@media (min-width: 1800px) {
    .gt-container {
        grid-template-columns: 3fr 8fr 3fr;
    }

    #gt-hero-caption {
        font-size: 5rem;
        margin-top: 10rem;
        margin-bottom: 5rem;
    }

    .gt-hero-downloads-play-store {
        height: 18mm;
    }
}

/* 4xl */
@media (min-width: 2200px) {
    .gt-container {
        grid-template-columns: 3fr 8fr 3fr;
    }

    #gt-hero-caption {
        font-size: 8rem;
        margin-top: 14rem;
        margin-bottom: 7rem;
    }

    .gt-hero-downloads-play-store {
        height: 28mm;
    }
}
