/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #d5d5d5;
    text-align: center;
    padding: 50px;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
}

.profile-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; 
}

h2 {
    color: #333;
    margin: 0; 
}

.profile-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.profile-icon:hover {
    transform: scale(1.1);
    cursor: pointer;
}

a {
    color: #0073b1;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}