html {
    display: table;
    margin: auto;
    height: 100%;
}

body {
    width: 45em;
}

h1 {
    font-weight: normal;
    text-align: left;
}

ul {
    list-style-type: "»   ";
}

li {
    line-height: 1.4;  /* Better line spacing */
    margin-bottom: 0.2em;  /* Space between list items */
    word-wrap: break-word;  /* Break long words */
    white-space: normal;  /* Allow text wrapping */
}

.profile-photo {
    display: block;
    /*margin: 0 auto;  /* Centers the image horizontally */
    width: 250px;
    height: auto;  /* Maintains aspect ratio */
    object-fit: contain;  /* Fits the image within bounds without cropping */
}

/* Navigation links styling */
.nav_links a {
    text-decoration: none;  /* Remove underline */
    color: black;        /* Keep original text color */
    font-weight: bold;      /* Make bold */
}

.nav_links a:hover {
    text-decoration: none;  /* No underline on hover */
    color: black;         /* No color change on hover */
    background-color: transparent;  /* No background highlight */
}