.container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: 100vh; /* Full viewport height */
    width: 100%; /* Full width */
}

img {
    max-width: 100%; /* Ensures the image is responsive */
    max-height: 100%; /* Ensures the image is responsive */
}

body {
    background-color: #1f1f1f;
}
