* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #4B1E0B;
    color: #fff;
}

header {
    text-align: center;
    padding: 40px 20px 20px;
}

header h1 {
    font-size: 2.5rem;
    color: #F8E2C6;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #fff;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
}

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