body {
    margin: 0;
    background-color: #333; /* Dark grey background */
    font-family: Arial, sans-serif; /* Sans-serif font for the page */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

.container {
    text-align: center; /* Center align the content */
    display: flex;
    flex-direction: column; /* Stack image and title vertically */
    align-items: center; /* Center items horizontally */
}

.responsive-image {
    width: 50vw; /* 50% of the viewport width */
    height: auto; /* Maintain aspect ratio */
    max-width: 50%; /* Prevents image from being larger than its natural size */
}

.title {
    color: white; /* White text color for the title */
    margin-top: 20px; /* Space between the image and the title */
    font-size: 1.5em; /* Adjust font size for the title */
}