body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container {
    text-align: center;
    margin-top: 50px; /* Adjust this to move the content up */
}

header {
    margin-bottom: 20px;
}

.logo {
    height: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    margin: 0;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.game-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

    .game-buttons a img {
        width: 150px; /* Adjust the size of the game images as needed */
        height: auto;
        border: 2px solid #fff;
        border-radius: 5px;
        transition: transform 0.3s, border-color 0.3s;
    }

        .game-buttons a img:hover {
            transform: scale(1.1);
            border-color: #aaa;
        }

footer {
    margin-top: 20px;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #333;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
}

    .button:hover {
        background-color: #555;
        border-color: #aaa;
    }

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
