header {
    padding: 2.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.games-title {
    text-align: center;
    font-size: clamp(10px, 3vw + 1rem, 4rem);
    letter-spacing: 7%;
    padding: 0.5rem 2rem;
    background-image: var(--brown-cardstock);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.body-container {
    position: relative;
    min-height: calc(100vh - 10rem);
}

.flex-container {
    margin: auto;
    width: min(60%, 2000px);
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.game-card {
    /*height: 375px;*/
    /*width: 300px;*/
    width: clamp(200px, 10vw, 300px);
    aspect-ratio: 4 / 5;
    background-image: url("../assets/imgs/box.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 10px;
    transition: transform 0.2s ease;
}

.game-card:hover {
    box-shadow: inset 0px 0px 5px 5px rgba(0, 0, 0, 0.1), 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.card-content {
    position: relative;
    height: 100%;
}

.game-title {
    position: absolute;
    width: 100%;
    top: 17%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 42px;
    text-align: center;
}

.robot {
    width: clamp(150px, 12vw, 256px);
    position: absolute;
    right: 2%;
    bottom: 5%;
}

.bee {
    width: clamp(150px, 12vw, 256px);
    position: absolute;
    left: 2%;
    top: 5%;
}

.game-card-template {
    display: none;
}

.game-thumbnail {
    width: 100%;
}