/*font-family: 'Fjalla One', sans-serif;
font-family: 'Source Sans Pro', sans-serif;*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;

}

#home {
    font-weight: normal;
}

#recentwork {
    font-weight: bolder;
}

.rw__header h1{
    font-family: 'Fjalla One', sans-serif;
    font-weight: lighter;
    color: #303030;
    text-align: center;
    margin: 30px 0;
    font-size: 2.4rem;
    text-shadow: 4px 4px 8px #252525;
    padding: 1rem 0 3.3rem 0;
    letter-spacing: 1px;
}

.rw {
    max-width: 1300px;
    width: 85%;
    height: auto;
    margin: auto;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.rw__container {
    width: 400px;
    margin: 2rem auto;
    padding: 20px 10px;
    background-color: white;
    border-radius: 9px;
    text-align: center;
}

.rw__card h2 {
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 10px 0;
}

#rw__image {
    width: 100%;
    max-height: 500px;
}

.rw__info p {
    font-family: 'Source Sans Pro', sans-serif;
    width: 85%;
    margin: 1rem auto;
    text-align: justify;
    font-weight: 600;
    color: #505050;
}

@media  (max-width: 1200px) {
    .rw {
        width: 100%;
    }
}

@media  (max-width: 800px) {
    .rw__container {
        width: 85%;
    }
}