body {
    background-color: #f7f7f7;
}

#bio {
    display: block;
    /* font-family: "Menlo", "Roboto Mono", monospace; */
    font-family: monospace;
    font-optical-sizing: auto;
    font-weight: lighter;
    font-style: normal;
    font-size: 14px;
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
    color: black;
    padding: 20px;
    max-width: 740px;
    margin: 64px auto;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

#bio p, #bio h2 {
    display: inline;
}

a {
    text-decoration: underline;
    color: #2a2c2e;
}

a:hover {
    color: blue;
}

h1 {
    font-size: 24px;
    font-weight: bold;
}

h2 {
    font-size: 18px;
    font-weight: bold;
}

.section-heading {
    font-size: 20px;
    font-weight: bold;
}

.heading {
    font-size: 18px;
    font-weight: bold;
}

.tech-details {
    color: rgb(60, 60, 60);
    white-space: normal;
}

.tech-details li{
    list-style-type: none;
    position: relative;
    padding-left: 25px;
    white-space: inherit;
}

.tech-details li:before{
    content: '-';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0px;
    left: 5px;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.image-gallery-item {
    border: 2px solid #ccc;
    border-radius: 2px;
    width: 64px;
    height: 64px;
    object-fit: cover;
    cursor: pointer;
}

#full-image-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#full-image-container {
    position: relative;
    max-width: 90%;
    height: 80%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#full-image {
    max-width: 100%;
    max-height: calc(100% - 64px);
    object-fit: contain;
}

#full-image-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 16px;
}

#full-image-controls button {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 20px;
}

#previous-button {
    margin-right: auto;
}

#close-button {
    flex-grow: 1;
    text-align: center;
}

#next-button {
    margin-left: auto;
}
