/* styles.css */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #100c14ed; /* Set the background color to black */
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.responsive-image {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover; /* Ensures the image covers the container while maintaining aspect ratio */
    display: block;
    border: none;
}

/* Media Queries */
@media (max-width: 600px) {
    .responsive-image {
        min-width: 100%;
        min-height: 100%;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .responsive-image {
        min-width: 100%;
        min-height: 100%;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .responsive-image {
        min-width: 100%;
        min-height: 100%;
    }
}

@media (min-width: 1441px) {
    .responsive-image {
        min-width: 100%;
        min-height: 100%;
    }
}
