#back-drop {
    background-image: url(gallery-background.jpg);
    background-repeat:no-repeat; /* add repeat-y media query*/
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: -5;
    background-size: 100% 100%;
}

a {
    color: #FFF;
    text-shadow: 0px 0px 5px #000;
    font-size: 30px;

}

a:visited {
    color: rgb(203, 250, 208);
}

#project-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100vw;
    height: 90vh;
    
}

.gallery-project {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40vw;
    height: 250px;
    background-color: #136;
    margin: 20px;
    border-radius: 8%;
    border: #FFF 2px solid;
    transition: transform 1s;
}

.gallery-project:hover {
    transform: scale(1.1);
}

#back {
    width: 100vw;
    height: 10vh;
    font-size: 40px;
    font-weight: bolder;
    text-align: center;
}

@media (max-width: 1000px) {
    #back-drop {
        
    }
}