/* structure */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    animation: fadeIn 1s ease-in;
}
.container {
    width: 90%;
    max-width: 400px;
    padding: 20px;
    border-radius: 12px; /* Rounded corners */
    text-align: center;
    transform: scale(0.95);
    animation: popIn 0.6s ease-in-out forwards;
}
.photo {
    display: block;
    margin: 0 auto 20px;
    width: 220px;
    height: 220px;
    border-radius: 50%; /* Circular photo */
    object-fit: cover;
    opacity: 0;
    animation: fadeInPhoto 1s ease-in-out 0.6s forwards;
}
h1 {
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInText 1s ease-in-out 0.8s forwards;
}
h2 {
    font-size: 1.5em;
    margin: 10px 0;
    opacity: 0;
    animation: fadeInText 1s ease-in-out 1s forwards;
}
.contact-info {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInText 1s ease-in-out 1.2s forwards;
}
.contact-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    width: 10em; /* Fixed width for uniform size */
    height: 2.5em; /* Fixed height for uniform size */
    gap: 0.5em; /*Give space between brand icon and text*/
    border-radius: 6px; /* Rounded corners */
    transition: all 0.3s ease;
}

/* Mobile layout */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
    }
    .contact-info a {
        width: 14em; /* Full width buttons */
        height: 2.5em; /* Ensure uniform height */
        margin-bottom: 10px; /* Spacing between buttons */
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInPhoto {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* microsoft-colors.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Microsoft system fonts */
    background-color: #f3f2f1; /* Light grey background */
    color: #323130; /* Microsoft dark grey text color */
    background-image: linear-gradient(to bottom, #0078d4, #f3f2f1); /* Microsoft blue gradient */
}
.container {
    background: #ffffff; /* White container */
    border: 1px solid #d0d0d0; /* Light grey border */
    color: #323130; /* Dark grey text */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Subtle shadow */
}
.header {
    background-color: #0078d4; /* Microsoft blue header */
    color: #ffffff; /* White text for header */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.photo {
    border: 3px solid #0078d4; /* Microsoft blue border */
}
h1 {
    font-size: 2em;
    color: #0078d4; /* Microsoft blue */
    font-weight: 700; /* Bold for emphasis */
}
h2 {
    font-size: 1.4em;
    color: #323130; /* Dark grey for subtitles */
}
.contact-info a {
    font-size: 1.1em;
    font-weight: 500; /* Medium font weight */
    color: #ffffff; /* White text for buttons */
    background: #0078d4; /* Microsoft blue button */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.contact-info a:hover {
    background: #005a9e; /* Darker Microsoft blue hover */
    box-shadow: 0 4px 10px rgba(0, 90, 158, 0.3); /* Hover shadow */
}
.footer {
    background-color: #f3f2f1; /* Light grey background */
    color: #6e6e6e; /* Light grey text */
    font-size: 0.9em;
}