img {
    padding: 0;
    margin: 0;
}

#category-selector {
    height: fit-content;
}

.category-selector-categories {
    width: 33vw;
    height: fit-content;
    text-align: center;
    float: left;
}

.category-selector-categories-holder {
    width: 26.4vw;
    margin-left: 10%;
    margin-right: 10%;
    border: 1px solid gray;
    background-color: lavender;
    border-radius: 5%;
}

.category-selector-categories-holder:hover {
    box-shadow: 0.5vh 0.5vh 0.5vh lightblue;
}

.category-selector-categories img {
    width: 100%;
    height: auto;
    border-radius: 5%;
}

.category-selector-categories-text {

    font-size: 25px;
}

.category-selector-categories div {
    padding: 25px;
}

.cat-nav-button img {
    width: 600px;
}

.category-title {
    padding-left: 0.5vw;
    max-width: 50vw;
    color: yellowgreen;
}

.category-container {
    height: fit-content;
}

.gallery {
    max-width: 100%;
    width: 100vw;

    display: flex;

    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.gallery img {

    max-height: 50vh;
    margin: 1vh;
    border-radius: 5%;
}

.gallery img:hover {
    box-shadow: 0.5vh 0.5vh 0.5vh lightblue;
}