body {
    font-family: 'Arial', sans-serif;
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
}

button {
    background-color: #3498db;
    color: #ecf0f1;
    font-size: 1.2rem;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

#randomItem {
    margin-top: 2rem;
}

#gameImage {
    max-width: 100%;
    max-height: 150px; /* Set the maximum height */
    height: auto;
}

#gameName {
    font-size: 1.5rem;
    margin-top: 1rem;
}

#newItemContainer {
    background-color: #34495e;
    color: #ecf0f1;
    font-size: 1.2rem;
    padding: 15px;
    border-radius: 5px;
    margin-top: 1rem;
    display: none;
}

#newItemContainer.show {
    display: block;
}

#loadButton {
    margin-top: 2rem;
}
