
body {
    font-family: Arial, sans-serif;
    background-color: whitesmoke;
}
 
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: ghostwhite;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.welcome-animation {
    animation: welcome 2s ease-in-out;
}
 
@keyframes welcome {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
 
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.profile-img {
    width: 220px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}
 
.name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
 
.title {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}
 .contact-icons {
    margin-top: 20px;
}
 
.contact-icons i {
    font-size: 24px;
    margin-right: 10px;
}
.contact-info {
    margin-bottom: 20px;
}
 
.contact-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
 
.contact-info p {
    margin-bottom: 5px;
}
 
.social-links {
    margin-top: 20px;
}
 
.social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #333;
    font-size: 20px;
}
 