@import url("https://googleapis.com");
/* 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-image: url('background.jpg');
        background-size: cover; 
        cursor: url('cursor_none.png'), auto;
        
      }
      #main{
        width: 70%;
        margin: 0 auto;
        text-align: center;
        background-color: rgba(89, 102, 116, 0.99);
        ;
        
      }

      #content{
        display: flex;
        justify-content: space-between;
        height: 77%;
        
      }
      #header{
        width: 100%;
        height: 10%;

      }
      #header h1{
        font-family: 'Shadows Into Light', cursive;
        font-size: 60px;
        margin-left: 2%;
        font-style: italic;
        text-decoration: underline;
        font-weight: bold;
        color:#030066
      }
      #footer{
        width: 100%;
        height: 10%; 
      }

      .section{
        margin: 1px;
        width: 100%;
      }

      .sidebar{
        width: 20%;
        height: 100vh;
        background-color: rgba(63, 81, 101, 0.99);
        display: flex;
  flex-direction: column;
      }
      .sidebar button{
        margin-left: 5%;
        margin-right: 5%;
        width: 90%;
        background-color: rgba(89, 102, 116, 0.99);
        border-radius: 5px;
        margin-top: 5px;
        color: white;
        cursor: pointer;
        cursor: url('hand_point.png'), grabbing;
        font-family: 'VT323', monospace;
        font-size: 16px;
      }
      #content-area{
        background-color: rgba(39, 55, 72, 0.99);
        text-align: left;
        padding: 10px;
      }
      #content-area h2{
        font-family: 'Shadows Into Light', cursive;
        font-size: 40px;
        margin-left: 2%;
        font-style: italic;
        text-decoration: underline;
        font-weight: bold;
        color:#7c1111
      }

      .column{
 column-count: 3;     /* Number of columns */
  column-gap: 16px;    /* Space between columns */
  width: 100%;
      }

      .poem{
        background-color: ivory;
        
        display: -moz-stack;
        font-family: 'VT323', monospace;
        font-size: 23px;
        padding: 10px;
        margin: 0.5%;
        break-inside: avoid;
        background-color: #d1d1d1;
        border: #acacac 5px solid;
        border-bottom: none;
        border-right: none;
        
      }
      .poem date{
        font-family: 'VT323', monospace;
        font-size: 15px;
        color: #3f3f3f;
      }