body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1, h2 {
    color: #2a5d84;
}

/* Consistent image sizing */
img {
    width: 600px;      /* fixed width */
    height: 350px;     /* fixed height */
    object-fit: cover; /* maintains proportions, crops if needed */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: block;
    margin: 0 auto;
}

#controls button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #2a5d84;
    color: white;
    cursor: pointer;
}

#controls button:hover {
    background-color: #1f4664;
}

p {
    margin-top: 8px;
}
