*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/*---- Gallery ----*/
.gallery{
    min-height: 100vh;
    width: 100%;
    background-image: url(images/background.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.gallery h1{
    text-align: center;
    margin: 30px 0 50px;
}
.gallery-col{
    margin: 10px 50px;
}
.gallery-col img{
    width: 180px;
    padding: 5px;
    filter: grayscale(100%);
    transition: 1s;
}
.gallery-col img:hover{
    filter: grayscale(0%);
    transform: scale(1.1);
}

video{
    display: block;
    margin: auto;
}


nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
