/* Global properties ======================================================== */
html, body {width:100%; padding:0; margin:0;}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #ffffff; /* Optional: adds a background color */
}

#randomImage {
    max-width: 90%; /* Ensures the image is responsive */
    max-height: 90vh; /* Prevents image from being taller than the screen */
    border-radius: 8px; /* Optional: adds rounded corners */
}