.container {
    display: flex;
    align-items: center; /* Vertical alignment */
    justify-content: center; /* Horizontal alignment */
    height: 90vh; /* Full viewport height */
}

img {
    max-width: 100%; /* Optional: Ensures the image is responsive */
    height: auto; /* Maintains the aspect ratio */
}

body {
    background-color: black;
}