body {
    background-color: white; /* Default to white background */
    transition: background-color 0.5s ease; /* Smooth transition */
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: rgb(33, 33, 33); /* Change background to black in dark mode */
    }
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden; /* Prevent scrollbars */
}

.bg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.bg img {
    max-width: 100%; /* image will grow until it reaches either 100% of its original size or the width of its container, whichever comes first */
    max-height: 100%; /* image will grow until it reaches either 100% of its original size or the height of its container, whichever comes first */
    object-fit: contain; /* image will cover its box, potentially cropping the image */
    object-position: center; /* image will be centered in its box */
    /*transition: transform 0.5s ease;  Animation for smooth rotation */

}

