body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d3bbed; /* Darker purple background */
    color: #fff; /* White text color */
}

header {
    background-color: #2d004d; /* Darker medium purple header background */
    color: #d3bbed;
    padding: 20px;
    text-align: center;
}

h1 {
    margin: 0;
}

.myImage {
    text-align: center;
}

.profileImage {
    width: 150px; /* Adjust the size as needed */
    border-radius: 50%; /* Make the image circular */
    margin-top: 10px;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #6e55a5; /* Darker medium purple section background */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    border-radius: 10px; /* Rounded corners for sections */
}

h2 {
    color: #2d004d; /* Darker medium purple section title color */
    border-bottom: 2px dashed #fff; /* Dashed underline for section titles */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.job,
.degree {
    margin-bottom: 20px;
    border-bottom: 1px solid #4b3077; /* Solid underline for job and degree entries */
    padding-bottom: 10px;
}

ul {
    list-style-type: none; /* No bullets for lists */
    margin-left: 0;
    padding-left: 20px; /* Left indentation for list items */
}

footer {
    background-color: #4b3077; /* Darker medium purple footer background */
    color:#d3bbed;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #6e55a5; /* Solid border at the top */
}