body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0; /* Light gray background */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
    text-align: center;
}

.image-container {
    position: relative;
    display: inline-block;
}

#popeImage {
    max-width: 80%;
    max-height: 60vh;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

#glassesImage {
    position: absolute;
    top: 35%; /* Adjust as needed to align with pope's eyes */
    left: 54%;
    transform: translate(-50%, -50%);
    width: 13%; /* Reduced from 60% */
    max-width: 200px; /* Reduced from 300px */
}

h1 {
    font-size: 1.8em;
    margin-top: 20px;
    color: #333; /* Dark gray text */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.social-links {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:nth-child(2) {
    background-color: transparent;
}

.social-link:hover {
    transform: scale(1.2);
    background-color: transparent;
}

.social-link:nth-child(2):hover {
    background-color: transparent;
}

.social-link svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 1px rgba(0,0,0,0.3));
}

.icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 1px rgba(0,0,0,0.3));
    border-radius: 4px;
}
