/* General styling for body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    text-align: center;
}

/* Container for content */
.container {
    padding: 20px;
    margin-top: 50px;
}

/* Style for the image */
.styled-picture {
    width: 300px; /* Resize image to 300px wide */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Drop shadow */
    margin-top: 20px;
}