body {
    font-family: 'Helvetica', sans-serif;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#profile-image {
    max-width: 100%;
    display: block; /* Ensures it scales based on its container */
    margin: 0 auto 20px; /* centers the image and provides spacing before the icon row */
}

.icon-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon i {
    font-size: 2rem;
    color: grey;
    transition: color 0.3s;
}

.social-icon:hover i {
    color: white;
}

.email {
    font-size: 1rem;
}
