#header-section-origin {
    background-image: url("../images/renoir-dance-moulin-galette.png");
}

#header-section-techniques {
    background-image: url("../images/manet-folleis.jpg");
}

#header-section-content {
    background-image: url("../images/orsay-grain-field.jpg");
}

/* ACTUAL CSS */

.content {
    padding-top: 5%;
    height: 100%;
}

.content p {
    padding-bottom: 4%;
}

.impressionism-text {
    background-color: rgba(29, 20, 17, 0.7);
    background-blend-mode: multiply;
    width: 100%;
    height: 20%;
    margin: 0;
    padding-left: 10%;
    bottom: 0;

}

.impressionism-text h1 {
    font-size: 5.5vw;
}

.embedded-img {
    object-fit: cover;
    height: auto;
    width: 100%;
    margin-bottom: 2%;
}

/* .embedded-img-right {
    float: right;
    width: 40%;
    height: auto;
    margin-left: 3%;
}

.embedded-img-left {
    float: left;
    width: 40%;
    height: auto;
    margin-right: 2%;

} */

.content-title {
    margin: 0;
}

.quotes {
    font-style: italic;
}

img {
    transition: transform 0.25s ease;
}

img:hover {
    -webkit-transform: scale(1.05);
    /* or some other value */
    transform: scale(1.05);
    /* background-color: rgba(29, 20, 17, 0.7);
    background-blend-mode: multiply; */
}

/* ARTIST SECTION */
.artist {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.artist-caption {

    color: rgba(29, 20, 17);
    padding-top: 3%;
    text-align: center;
    margin: auto;

}

.artist-caption:hover {
    color: rgba(29, 20, 17, 0.4);
    text-decoration: none
}

.topnav {
    padding-top: 10%;
    background-color: transparent;
}

.topnav a {

    padding-left: 40%;
    float: none;
    display: block;
    color: #f2f2f2;
    text-align: left;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 14px;
}

.text {
    padding-bottom:  10%;
}

.footer {
    
    margin: 0 auto;
    
    text-align: center;
    justify-content: space-between;
    width: 100%;
}

.footer hr {
    border-top: 1px solid rgba(29, 20, 17, .4);
}

.footer-nav a {
    font-weight: 900;
    margin-left: 10%;
    justify-content: center;
    color: rgba(29, 20, 17);
}

.footer-source {
    display: flex;
    text-align: center;
    margin: 0 auto;
    padding: 0 auto;
}

.footer-source p {
    padding-bottom: 0;
    margin-right: 4%;
    justify-content: center;
}


@media screen and (max-width: 800px) {
    .topnav {
        padding-left: 10%;
        display: inline-flex;
        justify-content: space-between;
    }

    .topnav a:not(:nth-of-type(1)) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }

    .text {
        padding-bottom: 20%;
        
    }
    .footer a {
        display: block;
       margin-bottom: 5%;
        
    }
}