body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 50px;
    max-width: 600px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.social-links {
    list-style: none;
    margin-top: 30px;
    padding: 0;
    text-align: center; /* Center the icons horizontally */
}

.social-links li {
    display: inline-block;
    margin-right: 10px;
}

.social-links a {
    color: #333;
    font-size: 1.2em;
}

/* Font Awesome icons */
.fab {
    font-family: FontAwesome;
}

/* Hide image initially (creates zoom effect on display) */
img {
    width: 200px; /* Adjust width as needed */
    transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
    opacity: 0; /* Initially hidden */
}

/* Image zoom on page load */
img.hidden {
    transform: scale(1.1); /* Initial zoom level */
    animation: showImage 0.5s ease-in-out forwards;
}

/* Animation to display image with zoom */
@keyframes showImage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hover effect - rotation and hue shift */
img:hover {
    transform: scale(1.1) rotate(5deg); /* Zoom and rotate */
    filter: hue-rotate(20deg); /* Change image hue */
}
