body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000; /* Set background color to black */
    color: white; /* Set text color to white for better contrast */
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

h1 {
    margin: 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 photos per line */
    gap: 0; /* Remove gap between photos */
    padding: 0; /* Remove padding */
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 0; /* Remove border radius */
    transition: transform 0.2s;
}

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

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

/* Media query for phone view */
@media (max-width: 414px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr); /* 3 photos per line */
    }
}