body {
    color: white;
    background: gray;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: Arial, sans-serif;
    text-align: center;
}

img.headshot {
    border: 5px solid white;
    border-radius: 10%;
    display: block;
    margin: auto;
    width: 25%;
    height: auto;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid white;
    border-radius: 8px;
    padding: 4px;
    transition: transform 0.15s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.03);
}

.button { border: 2px solid white; border-radius: 8px; color: white; padding: 4px; text-align: center; text-decoration: none; display: inline-block; cursor: pointer; }

.button:hover {
    transform: translateY(-3px) scale(1.03);
}
