*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

#gallery{
    background-color: #1B314B;
}

.gallery__hero {
    background-color: #2e3842;
    color: #fff;
    padding: 8rem 0 5rem;
    text-align: center;
}

.gallery__h1{
    text-align: center;
    margin-bottom: 1rem;
    animation: textAnimated 1s ease-in-out;
}

.gallery__hero P{
    padding: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5rem;
    text-align: center;
    animation: textAnimated 1.5s ease-in-out;
}

.gallery__hero a{
    animation: textAnimated 2s ease-in-out;
}

.gallery__container{
    display: grid;
    padding: 1rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background-color: #1B314B;
}

.gallery__container__rows img{
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
  
@media screen and (max-width: 567px) {
    .gallery__container{
        display: grid;
        padding: 5rem 1rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}






















