body {
    margin: 0;
}

#container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f5f5f5;
    font-family: Optima, Segoe, Segoe UI, Calibri, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

#aboutMe {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#myPhoto {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#contactMe {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.18);
}

.contact-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-link.email {
    color: #009973;
}

.contact-link.linkedin {
    color: #0a66c2;
}

#myPhoto img {
    width: 200px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}