body {
    font-family: 'Vibur', cursive;
    margin: 0;
    padding: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* container for the game list(all is under each other) */
.container {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.game-pick-button {
    background: rgba(15,23,42,0.8);
    color: #a5b4fc;
    border: 1px solid rgba(129,140,248,0.4);
    padding: 14px 28px;
    font-family: 'Vibur', cursive;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.22s ease;
}
.game-pick-button:hover {
    background: rgba(129,140,248,0.18);
    border-color: #818cf8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(129,140,248,0.3);
}

.h1 {
    font-size: 36px;
    margin-bottom: 20px;
}