body {
    background: rgb(211, 149, 95);
}

.container {
    width: 95%;
    height: 100vh;
    display: flex;
}

.quote {
    width: 900px;
    height: 450px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    color: black;
    background-color: rgb(97, 221, 180);
    border: 4px solid #333;
}

.quote p {
    font-size: 1.5rem;
}

@media(max-width:480px) {
    .quote p {
        font-size: 1.5rem;
    }
}

img.img-responsive {
    max-width: 100%;
    height: auto;
 }
 
 @media (min-width: 320px) {
    img.img-responsive {
       width: 100px;
    }
 }
 
 @media (min-width: 768px) {
    img.img-responsive {
       width: 200px;
    }
 }
 
 /* Footer */
 footer {
    text-align: center; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color:  #333;
    color: #fff;
  }
  
  
  footer span a{
    color: rgb(255, 199, 102);
    text-decoration: none;
  }
  footer span a:hover{
    text-decoration: underline;
  }
  
  @media (max-width: 600px) {
    footer {
        flex-wrap: wrap;
    }
    footer div {
        width: 100%;
        text-align: center;
    }
  }