﻿h1 {
    font-weight: 900;
}

body {
    background-color: #24253A;
}

.game-content {
    padding: 0px 20px 24px 20px;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.game-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 24px;
}


.game-header {
    text-align: center;
    background-image: url('../images/backgrounds/header.png');
    width: 90%;
    height: 200px;
    background-size: contain; /* Ensures the image covers the entire div */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}

.all-game-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    align-self: center;
    padding: 24px;
}

.all-game-button {
    max-width: 250px;
}

.section-category {
    display: flex;
    padding: 8px 32px 32px 32px;
    gap: 32px;
    width: 100%;
    margin: 0;
    justify-content: center;
    align-content: center;
}

.section-category-image {
    width: 100%;
    height: auto;
    width: 80px;
    height: 80px;
    font-size: 0.5vw;
}

.section-category-text {
    font-size: calc(10px + 0.5vw);
    text-align: center;
}

.game-category-card {
    border-radius: 32px;
    padding: 16px;
    width: 35vw;
    max-width: 180px;
    display: flex;
    gap: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #1C1B2D;
    text-decoration: none;
}
