h1{
    background-color: rgba(255, 0, 51, 0);
    margin: 0;
    padding: 12px 0;
}
.navbar ul{
    list-style-type: none;
    background-color: rgba(255, 0, 51, 0);
padding: 0px;
margin: 0px;
overflow: hidden;
}
.navbar a{
    color:rgb(255, 0, 0);
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}
.navbar a:hover{
    background-color:rgb(255, 255, 255)
}
.navbar li{
    float: left;

}

body{
    background-image: url(IMG_2728.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.gallery-wrapper {
    padding: 24px 12px;
}
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}
.container img {
    width: 360px;
    max-width: none;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    transition: transform .24s ease, box-shadow .24s ease;
}
.container img:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
