.filter_wrapper {
    display: flex;
    padding: 5px 5px 0 5px;
    margin: 5px 10px 0 10px;
    width: calc(100% - 20px);
}
.filter_wrapper .filter_form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.filter_wrapper .filter_form #filtering {
    font-size: 16px;
    border: 2px solid var(--p);
    color: var(--p);
    cursor: pointer;
    width: 100%;
    padding: 10px;
}

.search_wrapper {
    display: flex;
    font-size: 16px;
    padding: 5px;
    width: calc(100% - 34px);
    border-left: 2px solid var(--p);
    border-right: 2px solid var(--p);
    border-bottom: 2px solid var(--p);
    width: calc(100% - 34px);
    gap: 10px;
}
.search_wrapper #searching {
    padding: 5px 14px;
    font-size: 15px;
    outline: none;
    width: 100%;
}
.search_wrapper #search_btn {
    width: 15%;
    text-align: center;
    background-color: var(--p);
    padding: 5px 20px;
    cursor: pointer;
}

#list_wrapper {
    width: calc(100% - 19px);
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}
#list_wrapper .item {
    display: relative;
    padding: 3px;
    background-color: var(--p);
    width: calc(50% - 9px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#list_wrapper .item .image {
    height: 130px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#more_games {
    display: flex;
    align-self: center;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: var(--p);
    padding: 10px 20px;
    width: 50%;
}

