a {
    color: rgb(24, 18, 19);
    font-size: 2.25em;
    text-decoration: none;
    justify-items: center;
}

a:hover {
    color: rgb(255, 0, 106);
}

.games-title {
    text-align: center;
    font-size: 3.5em;
    padding: 15px;
}

.flex-container {
    margin: 0 auto;
    width: 75%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.game-card {
    /*height: 375px;*/
    /*width: 300px;*/
    height: clamp(250px, 30vh, 375px);
    aspect-ratio: 4 / 5;
    background-image: url("../assets/imgs/box.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 10px;
    padding: 10px;
    background-color: rgba(248, 248, 248, 0.357);
    transition: all 0.8s ease;
}

.game-card:hover {
    box-shadow: inset 0px 0px 15px 5px rgba(40, 39, 43, 0.2), 0px 0px 15px 6px rgba(40, 39, 43, 0.25);
    transform: scale(1.025);
}

.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: 10%;
    height: auto;
    position: fixed;
    right: 2%;
    bottom: 5%;
}

.bee {
    width: 10%;
    height: auto;
    position: fixed;
    left: 2%;
    top: 5%;
}

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

.game-thumbnail {
    width: 100%;
}


header {
    position: fixed;
}