h2 {
    text-align: center;
}

#container-category {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cardCategory {
    position: relative;
    font-family: LondrinaSolid-Regular, sans-serif;
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 0 15px var(--black);
    border-radius: 5px;
    list-style-type: none;
}

.cardCategory a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    padding: 5px;
    width: fit-content;
    height: auto;
}

.cardCategory img {
    height: 150px;
    margin-bottom: 12px;
}

.model {
    font-size: 1.5rem;
}

@media screen and (max-height: 600px) {
    #container-category {
        top: 10px;
    }
}

/***********************************/
/*********** ITEM DETAIL ***********/
/***********************************/
.img-item, #description {
    max-width: 95vw;
    height: auto;
    max-height: 450px;
    border-radius: 5px;
}

#description {
    width: 580px;
    max-width: 90vw;
}

.img-description {
    width: 600px;
    max-width: 95vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.img-gymnasium {
    max-width: 600px;
    max-height: 400px;
    border-radius: 5px;
}

#container-category.item {
    flex-direction: column;
    margin: 20px 0;
}

ul li {
    position: relative;
    font-size: 0.9rem;
}

/***************************************/
/*********** BLOG LIST TITLE ***********/
/***************************************/
.cardCategory.blog {
    width: auto;
    max-width: 95%;
    margin: 7px;
}

.body-container.blog li {
    padding: 5px;
}

.cardCategory.blog a {
    width: auto;
    padding: 5px 50px
}

.model.blog {
    align-self: flex-start;
    font-size: 1rem;
    margin: 2px 0;
}

.model.blog img {
    height: auto;
    width: 45px;
    margin: 0;
}

hr {
    width: 90%;
    height: 3px;
    max-width: 600px;
    margin: 50px auto 20px auto;
    background-color: var(--grey-menu);
    border: none;
}