body {
    /* font-family: Arial, sans-serif; */
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #d2d2d2;
    font-size: 16px;
    line-height: 1.6; /* adjust the value to your desired line height */
}

header {
    background-color: #2a2a2a;
    padding: 1em;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
}

section {
    background-color: #2a2a2a;
    padding: 1em;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 800px;
    max-width: 90%;
    border-radius: 10px; /* add this line */
}

h1 {
    margin-top: 0;
    font-weight: normal;
    font-size: 28px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #3ab8e2;
}


.profile-picture {
    width: 250px;
    /* height: 150px; */
    border-radius: 10px; /* adjust the value to your desired corner radius */
    margin: 15px;
    float: right;
    object-fit: cover; /* ensures the image is scaled to fit the container */
}