body {
    overflow: hidden;
}

#left-side {
    width: 35%;
    height: 80vmin;
    margin-top: 3vmin;
    padding: 6vmin 0;
    display: flex;
    justify-content: center;
}
#left-side img {
    width: 75%;
    object-fit: cover;
    border-radius: 50px;
}

#divider {
    height: 65vmin;
    border-right: solid 1px rgba(0,0,0,0.3);
}

#right-side {
    width: 65%;
    height: 80vmin;
    padding: 3vmin 6vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: hidden;
}
#right-side .title {
    margin-bottom: 0;
    width: 100%;
    font-size: 2rem;
}
#right-side .description {
    text-align: center;
    width: 80%;
    margin: auto;
    padding: 3vmin 0;
}

.category {
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 6vmin 0 3vmin 0;
    width: 33.3%;
}
.category img {
    height: 30vmin;
    aspect-ratio: 3/4;
    object-fit: contain;
    border-radius: 20px;
}
.category p {
    margin-top: 0.5vmin;
    font-weight: 600;
}


@media (max-aspect-ratio: 4/3) {

    html {
        overflow: auto;
    }
    body {
        padding-top: 15vmin;
    }
    main {
        flex-wrap: wrap;
        height: auto;
    }
    #left-side, #right-side {
        width: 100%;
        height: auto;
    }
    #right-side {
        justify-content: flex-start;
    }
    #divider {
        display: none;
    }
    .category {
        width: calc(50% - 4vmin);
        margin-left: 2vmin;
        margin-right: 2vmin;
    }
    .category img {
        width: 90%;
        height: auto;
    }

}