body {
    font-family: Arial, sans-serif;
    background-color: #cfe;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 80%;
    max-width: 800px;
    background-color: #def;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
   
}

.header {
    background-color: #fef;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
   
}

.cover {
    width: 100%;
    height: 100px;
    background: url('cover.jpg') no-repeat center/cover;
    
}

.profile {
    text-align: center;
    padding: 20px;
   
}

.profile-content {
    margin-top: -50px;

}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    
}

h2 {
    margin: 10px 0;
 
}

p {
    margin: 5px 0;
    color: #555;
    
}
