body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    background: #000000;
    color: #fff;
    padding: 1em;
    text-align: center;
}

.photos {
    width: 100%;
    padding: 1em;
    display: flex;
    flex-wrap: wrap; /* Allow photos to wrap if there's not enough space */
    gap: 1em;
}

.photos > .photos-col {
    flex: 1;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 1em;
}

.photos-col h1 {
    font-family: "Romie Trial";
    font-size: 80px;
    font-weight: 400;
    text-transform: uppercase;
}

.view-gallery {
    padding: 0.5em 1em;
    font-size: 16px;
    border: none;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-gallery:hover {
    background-color: #555;
}

.photos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    width: 100%;
}

.photo-img {
    width: calc(25% - 1em); /* Adjust to fit your layout */
    height: 125px;
    flex: 1;
    cursor: pointer;
    overflow: hidden; /* Hide overflowed parts of the image */
    position: relative; /* Ensure positioning context for the image */
    filter: grayscale(1);
}

.photo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container without distortion */
    display: block; /* Remove any extra space below the image */
}

@media (max-width: 900px) {
    .photos {
        flex-direction: column;
    }

    .photos-col:nth-child(2),
    .photos-col:nth-child(3) {
        display: none;
    }

    .photo-img {
        width: 100%;
    }
}
.site-logo {
    font-size: 20px;
    color: #000000;
    text-decoration:dotted;
    text-align: center;
}
a{
    text-decoration: none;
}