body {
    background-color: black;
    margin: 0;
    font-family: Arial, sans-serif;
}

h1, p{
    font-family: Arial;
    color: white;
    text-align: center;
}

h1 {
    font-size: 3em;
}

.hero {
    width: 100%;
    height: 100%;
    margin: 10em 0 0 0 ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
}

.hero img {
    /*
    background-image: url('logo.png');
    */
    width: 100%;
    height: 100%;
    padding: 20px 0 0 0 ;
    object-fit: cover;
}

.image-gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 5em;
    padding: 20px;
    flex-wrap: wrap;
}

.image-gallery img {
    width: 30%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

/* Specific styling for the first image to crop it */
.image-gallery img:first-child {
    object-fit: cover;
    height: 600px; /* Adjust height as needed to match other images */
}

#email {
    font-size: 1.5em;
    margin-bottom: 2em;
}

@media (max-width: 1050px) {
    .image-gallery img {
        width: 45%;
        margin-bottom: 25px;
    }



    p {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .image-gallery img {
        width: 100%;
        margin-bottom: 20px;
        max-width: 300px; /* Maintain aspect ratio */
    }

.image-gallery {
        flex-direction: column;
        align-items: center;
    }

    p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 40vh;
    }

    .image-gallery img {
        width: 100%;
        margin-bottom: 15px;
        max-width: 300px; /* Maintain aspect ratio */
    }

    p {
        font-size: 0.9em;
    }
}