.grid-wrapper {
    padding: 2rem 7rem;
}

.grid-wrapper label {
    font-size: 1.5rem;
}

.grid-wrapper p {
    font-size: 1.3rem;
    margin-bottom: .5rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 20vh;
    height: auto;
    gap: .5rem;
    margin-bottom: .4rem;
}

.grid-container.mobile {
    display: none;
}

.grid-box img {
    width: 100%;
    margin-top: -.4rem;
}

.grid-wrapper a {
    padding: .7em;
    font-size: .7em;
    color: white;
    background-color: black;
    border: none;
    cursor: pointer;
    ;
}

.grid-wrapper a:hover {
    background-color: rgb(56, 56, 56);
}

@media (max-width: 1024px) {
    .grid-wrapper {
        padding: 2rem 1rem;
    }

    .grid-container {
        display: none;
    }

    .grid-container.mobile {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}