body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    text-align: center; /* Center text elements */
}

.container {
    width: 80vw; /* Adjust the width to a significant portion of the viewport */
    height: auto;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
    align-items: center;
}

img {
    width: 100%;
    height: auto;
    transition: transform 0.3s, filter 0.3s;
}

img:hover {
    transform: scale(1.1);
    filter: drop-shadow(2px 4px 6px black);
}

.link-container {
    margin-top: 20px;
}

a {
    text-decoration: none;
    font-size: 18px;
    color: #007BFF;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
}
