
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

h1 {
    text-align: center;
    color: brown;
    margin: 50px 50px 0 50px;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;

}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
   

}

.gallery img {
    width: 100%;
}

.cloud img{
    width: 100%;
    height: 87%;
}

footer {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25Px;
}

i {
    text-transform: none;
    text-align: center;
    margin-bottom: 25Px;
    font-size: 10px;
}
.fa-regular fa-copyright {
    width: 50px;
}