body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    text-align: center;
    background-color: #3498db;
    color: white;
    padding: 20px;
}

.profile-picture img {
    max-width: 150px;
    max-height: 180px; /* Define the maximum height */
    width: 100%; /* Ensure the width adjusts accordingly */
    height: auto; /* Allow the image to maintain its aspect ratio */
    object-fit: cover; /* Crop the image to fit within the defined dimensions */
    border-radius: 50%;
    margin: 30px auto;
    display: block;
}

section {
    background-color: white;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #3498db;
    margin-top: 0;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* Apply CSS for the three-column layout */
.education-entry {
    width: calc(33.33% - 20px); /* 33.33% for three columns with 20px margin in between */
    /* margin: 0 10px; */
    display: inline-block;
    vertical-align: top;
}


