body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1a1a1a;
}

header {
    background-color: #303030;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.project-grid-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.project-tile {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-tile:hover {
    transform: translateY(0);
}

.project-tile img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-info h3 {
    margin: 0;
    font-size: 1.2em;
}

.project-info p {
    display: none;
}

.project-tile:hover .project-info {
    transform: translateY(0);
}

#fullscreen-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
}

#fullscreen-content {
    display: flex;
    width: 100%;
    height: 100%;
}

#fullscreen-left, #fullscreen-right {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#fullscreen-left {
    justify-content: center;
    align-items: center;
}

#fullscreen-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#fullscreen-right {
    padding: 20px;
    overflow-y: auto;
    background-color: rgba(255,255,255,0.1);
}

#additional-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.additional-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

#additional-text {
    color: #ffffff;
}

