
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

body {

    margin: 0;
    background-color: #303030; /* Gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;

}

.gallery img {

    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgb(0, 0, 0);
}

.contact-button {
    position: fixed;
    top: 0;
    display: inline-block;
    padding: 10px 30px;
    margin-bottom: 20px;
    width: 80%;
    font-size: 14px;
    color: white;
    font-family: "Almarai", serif;
    font-weight: bolder;
    background-color: #303030; /* Green color */
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0px 5px 10px 1px rgb(0 0 0);
    transition: background-color 0.3s ease;
    text-shadow: 0 0 10px #ffd700
}

.contact-button:hover {
    background-color: #45a049;
}


@media (max-width: 768px) {
    .gallery {

        gap: 15px;
        padding: 15px;
    }

    .gallery img {
        border-radius: 10px;

    }
    .contact-button {
        width: 100%;
    }

}

@media (max-width: 480px) {
    .gallery {
        gap: 10px;
        padding: 10px;
    }

    .gallery img {
        border-radius: 8px;
    }
}
