*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
     background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(https://images.pexels.com/photos/67818/pexels-photo-67818.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    font-family: 'Merriweather', serif;
    width: 100%;
    height: 100%;
}

h1{
    text-align: center;
    margin: auto;
    margin-top: 50px;
    color: #fff;
}

#quote-box{
    margin: 100px auto;
    background-color: rgb(248, 172, 198);
}

#text{
    text-align: center;
    font-weight: 600;
    
}
#author{
    text-align: right;
}
i{
    color: white;
}
#new-quote{
    color: #fff;
    text-decoration: none;  
}
footer p {
    color: white;
    
}
footer p a {
    text-decoration: none;
    color: rgb(248, 172, 198);
}
footer p a:hover {
    text-decoration: none;
    color: rgb(255, 246, 19);
}


@media (max-width: 767.98px) { 
    h1{
        font-size: 36px;
    }
    #quote-box{
        font-size: 18px;
        margin: 50px auto;
    }
 }


