        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Times, serif;
    padding: 10px;
    padding-top: 10px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.desktop-container {
    flex: 1;
}

.footer-text {
    text-align: center;
    padding: 0px;
    margin-top: auto;
}

h1 {
    font-size: inherit;
    position: sticky;
    width: 100%;
    top: 0;
    background-color: white;
    padding: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #000000;
    z-index: 1000;
    font-weight: normal;
    font-style: italic;
}

h2 {
    font-size: inherit;
    top: 0;
    padding: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #000000;
    z-index: 1000;
    font-weight: normal;
    font-style: italic;
}

h6 {
    font-size: inherit;
    font-weight: normal;
    font-style: italic;
    background-color: black;
    color: rgb(255, 255, 255);
}

p {
    font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}

.bottom {
    vertical-align: bottom;
    align-self: flex-end;
}

details > summary {
    list-style: none;
}

details > summary:hover {
    text-decoration: underline;
}

details[open] summary {
    text-decoration: underline;
}

.project-details {
    border: 1px solid #000000;
    padding: 15px;
}

details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}
/* Mobile styles */
@media (max-width: 768px) {
    
    
    /* Style for the open summary */
    details.project-item[open] > summary {
        text-decoration: underline;

        margin-bottom: 0px; /* Space between summary and content */
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .desktop-container {
        display: flex;
        gap: 20px;
    }

    .left-panel {
        flex: 1;
    }

    .right-panel {
        flex: 1;
        padding: 20px;
        min-height: 400px;
        border: none;
    }

    .right-panel.active {
        border: 1px solid black;
    }

    .project-content {
        display: none;
    }

    .project-item.active .project-header {
        text-decoration: underline;
    }
}