/* styles.css */
/* .blank-screen {
    background-color: black;
    transition: background-color 1s ease-in-out;
} */

/* .cyber-decode {
    animation: decode 5s linear;
    background-color: black;
    color: green;
} */

/* Add a CSS class for fade-in effect */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes decode {
    0% {
        content: "";
    }
    100% {
        content: "Decoding...";
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* styles.css */
body {
    background-color: white;
    margin: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    height: 100vh;
}

#image-container {
    background-color: black;
    margin: 0;
}

#image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
