.title-bar {
    background-color: #00cf00;
    color: white;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border-bottom: 2px solid #00ff00;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    width: 100%;
    box-sizing: border-box;

}

#index {
    color: #00ff00;
    font-family: 'xp', sans-serif;
}


.title-bar .title {
    font-weight: bold;
    font-family: 'xp', sans-serif;
    font-size: x-large;
}


.controls {
    display: flex;
}


.controls span {
    width: 20px;
    height: 20px;
    background-color: #000000;
    color: #00cf00;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
}

.controls a {
    text-decoration: none;
}

.controls a:visited {
    text-decoration: none;
}


.controls span:hover {
    background-color: #818181;
}


.content {
    padding: 20px;
    color: black;
    height: calc(80vh - 40px);
    overflow-y: auto;
    box-sizing: border-box;
}

.content img {}

.window {
    width: 70%;
    height: 80vh;
    border-radius: 2%;
    margin: 1%;
    border: 10px solid #00ff00;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    position: absolute;
    right: 0;
    background: #FFFFFF;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.window-content {
    display: flex;
    flex-grow: 1;
    height: calc(80vh - 40px);
}

.navbar {
    margin-top: 2%;
    width: 15%;
    background-color: #F0F0F0;
    border-right: 2px solid #00cf00;
    padding: 10px;
    box-sizing: border-box;
}

.navbar p {
    padding: 3px;
    align-items: center;
    display: flex;
}

.window-text {
    width: 85%;
    padding: 20px;
    color: black;
    overflow-y: auto;
    box-sizing: border-box;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
    border-top: 2px solid #00ff00;
    box-sizing: border-box;
}

.image-container img {
    width: 200px;
    height: 200px;
    border: 2px solid #00ff00;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}


.project-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    border: 2px solid #00ff00;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* Zoom effect */
}

.project-item:hover img {
    transform: scale(1.1);
    /* Slight zoom on hover */
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #00ff00;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'xp';
    font-size: x-large;
}

.project-item:hover .overlay {
    opacity: 1;
}