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

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
}

header {
    background: #333;
    padding: 20px;
    text-align: center;
    color: #ff6600;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

main {
    padding: 40px 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ff6600;
    font-size: 2em;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.gallery-item:hover {
    transform: scale(1.05);
}

footer {
    background: #333;
    padding: 20px;
    text-align: center;
    color: #ff6600;
    position: relative;
    width: 100%;
    bottom: 0;
}
