canvas {
    border: 2px solid #333;
}

.game-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.games {
    display: flex;
}

.game {
    width: 17rem;
    height: 3rem;
    background: #ffffff;
    border-color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    margin: 0 0.5rem;
    letter-spacing: 1px;
    border-radius: var(--radius);
    color: #000000;
    cursor: pointer;
    transition: var(--transition);
}

.game-content {
    text-align: center;
    margin-bottom: 2rem;
    z-index: 999;
}

.game-content p {
    margin: 0;
    width: 70%;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
}

.cla {
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}