/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    background-color: #f0f0f0;
}
header {
    padding: 20px;
    font-size: 3em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
footer {
    padding: 10px;
    background-color: #333;
    color: white;
    font-size: 0.8em;
}
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
img {
    max-width: 100%;
    max-height: 100%;
}
