body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}


.card {
    width: 400px;
    background-color: white;
    margin: 20px auto /*This is the magic for centering*/;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

img {
    width: 200px;
    height: 200px;
    object-fit: cover; /* Ensures the image fits nicely into circle */
    border-radius: 50%; /* This makes the image circluar */
}

h1 {
    color: #00008B;
    margin-top: 0;
}

h2 {
    color: #555;
    font-size: 1.1em;
    font-weight: normal;
}

.section {
    margin: 25px 0;
    text-align: left; /* Overide the center alignment for sections */
}

.section h3 {
    color: #333;
    border-bottom: 2px solid #4e7fbb48; /* Adds a subtle line under the heading */
    padding-bottom: 5px;
}

ul {
    list-style-type: none; /* Removes bullets */
    padding: 0;
}

ul li {
    padding: 5px;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a :hover {
    color: #0d47a1;
    text-decoration: underline;
}