/* General body styling */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 40px;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header styling */
header {
    text-align: center;
    margin-bottom: 30px;
}

/* Profile image styling */
.profile-image {
    display: block;
    margin: 0 auto 30px auto;
    max-width: 300px;   /* smaller than 800px so it fits nicely */
    border-radius: 10px; /* rounded corners */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* subtle shadow */
}

/* Headings */
h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #aa0085; /* adds some color */
}

/* Paragraphs */
p {
    margin-bottom: 15px;
}

/* Lists */
ul {
    list-style-type: square;
    margin-left: 20px;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Section spacing */
section {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
