.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 95%;
    background-image: url("../gallery-images/IMG_20180118_145300UPSCALE.jpg");
    background-size: cover;
	background-position: center;
    animation: page-transition 0.7s;
}

.head-title {
    font-weight: 700;
    font-size: 80px;
    letter-spacing: 3px;
    color: rgb(222, 0, 0);
    text-align: center;
}
.head-desc {
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.274);
}
.head-background-title{
    position: fixed;
	top: 10px;
    left: 20%;
    text-align: left;
    color: white;
}

@media (max-width: 810px) {
    .head-title {
        font-size: 50px;
    }
    .head-desc {
        font-size: 25px;
    }
}
@media (max-width: 500px) {
    .nav-text, .selected {
        font-size: 14px;
    }
    .nav-flex {
        min-width: 300px;
    }
}
