
.section-categories {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #d13149;
    background-image: url('https://img.freepik.com/premium-vector/seamless-vector-dark-wood-pattern-wood-texture-for-games-and-items_456605-103.jpg');
    background-size: 300px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* width: 1240px;
    margin: auto; */

    /* @media (width <= 1280px) {
        width: 1240px;
    } */
}

.card {
    display: flex;
    flex-direction: column;
    width: 220px;
    padding: 10px;
    /* background-color: #fff; */
    background-color: #fff2f2;
    color: #b3404a;
    text-decoration: none;
    /* border: solid 6px #d13149; */
}
.card:hover {
    background-color: aliceblue;
}

.card-name {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
    font-family: "Neucha", cursive;
    font-style: normal;
    font-size: 32px;
    font-weight: 600;
}
.card-img svg {
    width: 130px;
    height: auto;
    margin: auto;
    display: block;
}
.section-history {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffd5ea;
    /* background-color: khaki; */
}

.history-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.history-item {
    padding: 20px;
    background-color: #fff;
    border: solid 1px #ccc;
    box-shadow: 4px 3px 5px #777;
}
.history-item a {
    text-decoration: none;
}