body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

.game-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.game {
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 30%;
    box-sizing: border-box;
    text-align: center;
    position: relative; /* For korrekt placering af play-button */
}

.game-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Gør indholdet af game-content fuld højde af parent .game */
}

.game img, .game canvas {
    max-width: 100%;
    height: auto;
    max-height: 200px; /* Juster højden efter behov */
    margin-top: 20px; /* Margin over billedet */
}

.play-button {
    display: block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 5px 0;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 10px;
}

form button {
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}
