body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #d32f2f;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav {
    background-color: #f44336;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
    position: relative;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

section {
    padding: 20px;
    text-align: center;
}

section#home {
    background-color: #ffebcd; /* Açık arka plan rengi */
}

.gallery {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery img {
    width: 300px;
    height: auto;
    display: none;
}

.static-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.static-gallery .gallery-item {
    text-align: center;
}

.static-gallery img {
    width: 300px;
    height: auto;
}

footer {
    background-color: #d32f2f;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
