@import "base.css";

body {
    height: 100dvh;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
}

.grid {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
}

@media (max-width: 1024px) {
    .grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4rem;

        > :first-child {
            display: none;
        }
    }
}

.acinex {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;

    .logo {
        width: 100%;

        img {
            width: 100%;
        }
    }

    .name {
        font-family: "Nulshock", sans-serif;
        font-size: 64px;
    }

    .title {
        width: min-content;

        sub {
            font-size: 1rem;
        }
    }

    .subtitle {
        font-weight: bold;
        text-transform: uppercase;
        font-size: 2rem;
        line-height: 0.8;
        padding-block-start: 4rem;

        sub {
            letter-spacing: 0.03rem;
        }
    }
}

.vibly {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    max-width: 10rem;

    .logo {
        width: 70%;

        img {
            width: 100%;
        }
    }

    .name {
        width: 50%;

        img {
            width: 100%;
        }
    }

    .download {
        a {
            color: inherit;
            text-decoration: none;
            display: block;
            border: 2px solid #ffffff;
            padding: 0.5rem 0.75rem;
            border-radius: 2rem;
            font-size: 0.9rem;
        }
    }
}

.footer {
    padding-block: 1rem;
    display: flex;
    gap: 1rem;
    a {
        color: inherit;
    }
}