main {
    padding: 0 0;
    width: 100%;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.container {
    min-height: 82vh;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cover {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

.cover .linkContainer {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    width: 20rem;
}

.linkContainer:nth-child(even) {
    margin-top: 2rem;
}


.linkContainer a {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    color: oklch(98.4% 0.003 247.858);
    background-color: oklch(12.9% 0.042 264.695);
    border-radius: 1.2em;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
}

.linkContainer a:hover {
    background-color: oklch(20% 0.042 264.695);
    cursor: pointer;
}

.imgContainer {
    height: 70vh;
    width: 50%;
    overflow: hidden;
    object-fit: contain;
    height: auto;
    object-position: top center;
}

.coverImage {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.txtContainer {
    height: 80vh;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 6rem;
}

.txtContainer p {
    font-size: 1.4rem;
}

.txtContainer h1 {
    font-size: 5rem;
}

.large-image {
    width: 50%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imgGridContainer {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    box-sizing: border-box;
}

.imgGridContainer img {
    object-fit: cover;
}

.whiteContainer {
    width: 100%;
    height: 10vh;
    background-color: oklch(98.4% 0.003 247.858);
}

/* ================
   MEDIA QUERIES
   ================ */
@media (max-width: 1024px) {
    .cover {
        flex-direction: column;
    }

    .cover:nth-child(even) {
        flex-direction: column-reverse;
    }

    .container {
        padding: .5rem 0;
    }

    .imgContainer {
        width: 100%;
        height: auto;
        object-position: center;
    }

    .txtContainer {
        padding: 0.5rem 2rem;
        width: 75%;
        height: 40vh;
        margin: 0 auto;
    }

    .whiteContainer {
        display: none;
    }

    .desktop {
        display: none;
    }

    .txtContainer h1 {
        font-size: 2rem;
    }

    .txtContainer p {
        font-size: 1rem;
    }

    .linkContainer {
        justify-content: center;
        gap: 1rem;
    }

    .linkContainer:nth-child(even) {
        margin-top: .5rem;
    }

    .imgGridContainer img {
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .cover {
        flex-direction: column;
        align-items: center;
    }

    .txtContainer {
        height: 50vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: .5rem 6rem;
    }

    .txtContainer p {
        font-size: .7rem;
    }

    .txtContainer h1 {
        font-size: 2.5rem;
    }

    .linkContainer {
        flex-wrap: wrap;
        gap: 1rem;
        width: auto;
        padding: 1rem 0;
        margin: 1rem;
    }

    .linkContainer:nth-child(even) {
        margin-top: 2rem;
    }

    .linkContainer a {
        margin-top: 1rem;
        padding: .75 .5rem;
    }

    .logo {
        max-height: 60px;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}

@media (max-width: 480px) {
    .txtContainer {
        padding: 1rem;
    }

    .txtContainer h1 {
        font-size: 1.5rem;
    }

    .txtContainer p {
        font-size: 0.95rem;
    }

    .imgGridContainer {
        grid-template-columns: 1fr 1fr;
    }
}