body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #4608d6;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color:rgb(248, 248, 248);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-top: 10px;
}

h1 {
    font-size: 28px;
    color: #333;
}

h2 {
    font-size: 24px;
    color: #555;
    margin-top: 30px;
}

h3 {
    font-size: 20px;
    color: #333;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 15px;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}