* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "MS Sans Serif", Tahoma, sans-serif;
}

body {
    background-color: #008080; /* Windows 95 teal background */
    min-height: 100vh;
    color: #000;
    overflow: auto;
}

.desktop {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.window {
    background-color: #c0c0c0;
    border: 2px outset #c0c0c0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.title-bar {
    background: linear-gradient(90deg, #000080, #1084d0);
    color: white;
    padding: 3px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 13px;
}

.title-bar-controls {
    display: flex;
}

.title-bar-button {
    width: 16px;
    height: 14px;
    background-color: #c0c0c0;
    border: 1px outset #c0c0c0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    margin-left: 2px;
}

.window-content {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.nav-toggle {
    background-color: #c0c0c0;
    border: 2px outset #c0c0c0;
    padding: 5px 10px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: fit-content;
    font-weight: bold;
}

.nav-toggle:active {
    border: 2px inset #c0c0c0;
}

.folder-nav {
    display: flex;
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.folder-nav.open {
    height: 90px;
}

.folder {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 80px;
    text-align: center;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.folder-nav.open .folder {
    opacity: 1;
    transform: translateX(0);
}

.folder:nth-child(1) { transition-delay: 0.05s; }
.folder:nth-child(2) { transition-delay: 0.1s; }
.folder:nth-child(3) { transition-delay: 0.15s; }
.folder:nth-child(4) { transition-delay: 0.2s; }

.folder-icon {
    width: 48px;
    height: 40px;
    background-color: #ffa500;
    border: 2px outset #c0c0c0;
    margin-bottom: 5px;
    position: relative;
}

.folder-icon:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 5px;
    background-color: #ffa500;
    top: -7px;
    left: 10px;
    border: 2px outset #c0c0c0;
    border-bottom: none;
}

.folder-name {
    font-size: 12px;
    color: black;
}

.content-area {
    border: 2px inset #c0c0c0;
    background-color: white;
    flex-grow: 1;
    padding: 15px;
    overflow: auto;
}

.section {
    display: none;
}

.section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.gallery-item {
    border: 2px outset #c0c0c0;
    padding: 10px;
    background-color: #c0c0c0;
    text-align: center;
}

.gallery-item img {
    max-width: 100%;
    border: 2px inset #c0c0c0;
    background-color: white;
    padding: 5px;
}

.gallery-item p {
    margin-top: 8px;
    font-size: 12px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000080;
}

p {
    margin-bottom: 10px;
    line-height: 1.4;
}

/* funstyles */
.egg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.egg-content {
    background-color: transparent; 
    border: none; 
    padding: 0; 
    text-align: center;
}

.egg-content img {
    cursor: pointer;
}
    font-size: 18px;
}