body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 80%;
    max-width: 800px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 50%;
}

.shape1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.shape2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -50px;
}

header {
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

header h1 {
    margin: 10px 0;
}

header p {
    margin: 5px 0 0;
    color: #777;
}

.profile-picture {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ddd;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section {
    margin: 20px 0;
}

section h2 {
    margin-bottom: 10px;
    color: #333;
}

section ul {
    list-style-type: none;
    padding: 0;
}

section ul li {
    background: #f9f9f9;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
}

footer {
    padding: 10px 0;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    color: #777;
}
