body{
    font-family: 'Montserrat', sans-serif;
}
.title{
    text-align: center;
    margin: 30px auto 0;
    color: #313131;
    font-weight: 800;
}
.quote-box{
    background: #fff;
    margin: 50px auto ;
    width: 500px;
    text-align: center;
    padding: 7px 7px 60px;
    line-height: 1.6;
    word-spacing: 3px;
    font-size: 20px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}
.quote-box:hover{
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
#quote{
    margin: 0;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .9s;
}
.quote-box:hover #quote,
.quote-box:focus #quote{
  transform: scale(1.2);
}
.note{
    text-align: center;
}
#btn{
    padding: 15px 50px;
    border: none;
    outline: none;
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
#btn:hover{
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
@media screen and (max-width: 600px){
    #quote{
        height: 350px;
    }
    .quote-box{
        width: 350px;
        margin: 70px auto;
    }
    .quote-box:hover #quote,
.quote-box:focus #quote{
  transform: scale(1.1);
}
}
@media screen and (max-width:360px){
    .quote-box{
        width:320px
    }
}
