body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px; /* Forces space below the image */
}

img {
    width: 60%;
    max-width: 400px;
    height: auto;
}

h3 {
    color: #2980b9;
}

a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    margin: 10px 0;
}

.footer {
    margin-top: auto;
    padding: 10px;
    font-weight: bold;
}

.copyright {
    position: absolute;
    bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    img {
        width: 80%;
        max-width: 300px;
    }

    .image-container {
        padding-bottom: 80px; /* Adjusted for smaller screens */
    }

    body {
        height: auto;
        padding: 10px;
    }
}