body {
    background-color: #D4AB88;
}

/********************  Header  *******************/

.main-image {
    background-image: url("/images/main.png");
    background-position: -10px -10px;
}

.main-title {
    left: 395px;
    top: 344px;
}

/********************  Main content  *******************/

#content {
    width: 100%;
    height: min-content;
    padding: 0 75px;
    box-sizing: border-box;
	display: flex;
    flex-direction: column;
    align-items: center;
}

#pagination {
    color: #E0E6ED;
    background-color: #05D9E866;
}

/********************  Footer  *******************/

#footer {
    color: #FFFFFF;
    background-color: #FBF8E888;
}

/********************  Containers  *******************/

/********************  Container1  *******************/
.container1 {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 30px 1fr;
    align-items: center;
    border: 20px solid #7E714D;
    border-radius: 5% 5% 5% 5%;
    margin: 10px;
    background-color: #E1CDAC;  

}

.container1__title {
    height: 100%;
    width: 100%;
    background-color: #7E714D;
    display: flex;
    justify-content: center;
    align-items: start;
    grid-column: 2/3;
    grid-row: 1/2;
    color: #37382B;
    border-bottom-left-radius: 15%;
    border-bottom-right-radius: 15%;
}

.item-container1 {
    grid-column: 1/4;
    grid-row: 2/3;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 10px ;
    padding: 10px;
}

.item-container1__item {
    height: 200px;
    width: 250px;
    background-color: yellowgreen;
}

/********************  Container2  *******************/

.container2 {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 30px 1fr;
    align-items: center;
    border: 20px solid #7E714D;
    border-radius: 5% 5% 5% 5%;
    margin: 10px;
    background-color: #E1CDAC;  

}

.container2__title {
    height: 100%;
    width: 100%;
    background-color: #7E714D;
    display: flex;
    justify-content: center;
    align-items: start;
    grid-column: 2/3;
    grid-row: 1/2;
    color: #37382B;
    border-bottom-left-radius: 15%;
    border-bottom-right-radius: 15%;
}

.item-container2 {
    grid-column: 1/4;
    grid-row: 2/3;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 10px ;
    padding: 10px;
}

.item-container2__item {
    height: 200px;
    width: 250px;
    background-color: yellowgreen;
}