body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg,rgb(244, 246, 207),rgb(114, 178, 247));
    display: block;
    justify-content: center;
    align-items: center;
    height: 150vh;
    margin: 0;
}

.profile-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 8px rgba(240, 246, 186, 0.8);
    text-align: center;
    width: 400px;
}
.profile-header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #6e8efb;
}

h1 {
    margin: 10px 0;
    color: #333;
}

p {
    color: #666;
}

.contact-btn {
    background: #6e8efb;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contact-btn:hover {
    background: #a777f7;
}