.main-content-wrapper {
    align-self: center;
}

.img-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 30px;
    column-gap: 20px;
    max-width: 1400px;
    background-color: white;
    height: fit-content;
    width: fit-content;
    justify-self: left;
}

@media (max-width: 800px) {
    .img-text-wrapper {
        grid-template-columns: 1fr;
    }
}

.img-wrapper {
    justify-self: left;
    max-width: 600px;
}

@media (max-width: 800px) {
    .img-wrapper {
        justify-self: center;
    }
}

.img-wrapper img {
    width: 100%;
}

.keywords-wrapper {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background-color: var(--sea-green);
    color: var(--isabelline);
}

.keyword {
    padding-bottom: 10px;
    padding-left: 10px;
}

/* Slideshow */
.slideshow-container {
    display: block;
    position: relative;
    width:  100%;
    margin: auto;
    height: 550px;
    overflow: hidden;
}

.slide {
    display: none;
}

.cats-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
}

.image-wrapper {
    width: 100%;
    height: 550px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.prev, .next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    font-size: 60px;
    color: var(--sea-green);
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Mobile */
.mobile .img-text-wrapper {
    grid-template-columns: 1fr;
}

.mobile .img-wrapper {
    width: 100%;
    max-width: 100%;
}

.mobile .keywords-wrapper {
    grid-template-columns: 1fr 1fr;
}

.mobile .slideshow-container {
    height: 1000px;
    margin-bottom: 20px;
}

.mobile .image-wrapper {
    height: 1000px;
}

.mobile .prev, .mobile .next {
    font-size: 50px;
}
