body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
}

h1, h2, h3 {
    margin: 10px 0;
}

.profile img {
    width: 300px;
    height: auto;
    border-radius: 50%;
    margin: 20px 0;
}

.profile, .links, .activities {
    background: white;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.links ul, .activities ul {
    list-style: none;
    padding: 0;
}

.links ol, .activities ol {
    list-style-type: decimal; /* Numbered list (default) */
    padding-left: 100px; /* Adjust indentation */
    font-size: 18px;
    text-align: left;
    color: #333; /* Dark text color */
}


.links li, .activities li {
    padding: 8px 0;
}

.links a {
    text-decoration: none;
    color: #0073e6;
}

footer {
    background: #333;
    color: white;
    padding: 10px;
    margin-top: 20px;
}





