/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    background-color: #1C1C1C;   /* dark charcoal */
    color: #F5DEB3;              /* wheat text */
    font-family: Georgia, serif;
    padding: 2em;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
  }
  
  hr {
  border: 1px solid #7A1F1F;   /* burgundy divider */
  width: 50%;
  margin: auto;
}
  
  h1, h2, h3 {
    text-align: center;
    font-size: 2.5em;
    color: #CCCCCC;              /* soft gray headings */
  }
  .poem {
    font-style: italic;
    margin-top: 1em;
    white-space: pre-line;
    
  }
  
  
  a {
    color: #a6dcef; /* soft blue for links */
    text-decoration: none;
  }
a:hover {
  color: #87CE4B;              /* brighter blue on hover */
}
      
    #quote {
      font-weight: 600;
      text-align: center;
    }
    
    .author{
      font-weight: normal;
      font-style: italic;
      }
      
      #poem1 {               
        text-align: center;
        background-color: #052d0a;
               }
               
     #welcome {
        padding: 0;
        margin: -15px 0;
        text-align: center;
        background-color: #000;
        color: wheat;
              }
               
    #unstrung-image {
      width: 100%;
      position: relative;
      margin: auto;
        }
        
       button {
        background-color: orange;
        width: 100px;
        height: 26px;
 
        }
        
  