.body{

    margin: 0px;
    padding: 0px;
}

/* Header */
.header{

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}
.title {

    font-size: 25vw;
    color: rgb(27, 27, 27);
    margin-top: -35px;
}


/* Gallery */

.gallery{

    width: 100%;
    display: block;
    padding: 0px 50px 10px 0px;
}



/* Images */

img {

    width: 100%;
    object-fit: contain;
}

/* Reveal Animations*/

.vidbx1{

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    position: absolute;
    z-index: 0;
    opacity: 1;
    transition: 20ms;
}

.vidbx1:hover{

    opacity: 0;
    transition: 20ms;
}
.vidbx2{

    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    position: absolute;
    z-index: -6;
}


/* Larger Screens */

@media only screen and (min-width:600px ){

/* Header */
.header{

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: sticky;
    top: 0px;
    
    width: 100vw;
    
}

/* Gallery */

.gallery{

    width: 100%;
    display: flex;
    padding: 0px 10px 10px 0px;
}

/* Images */

img {

    width: 30%;
}

    
}


    
