/* CSS for quotes.php */

h1 
{ 
  margin-bottom: 30px;
  line-height: 1.2;
}

@media (max-width: 800px)
{
  h1 { font-size: 110%; }
}

div.quote
{
  border: 1px solid green;
  border-radius: 5px;
  margin: 30px auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 500px)
{
  div.quote
  {
    margin: 10px auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}