h1{
  font-size: 60px;
  text-align: center;
}
h2{
    font-size: 50px;
}
h3{
    font-size: 40px;
}
.displayed {
    display: block;
    margin: 0 auto;
    padding:3px;
    border:1px solid #f4f4f4; 
    width:500px;
    height:auto;}
.notes{
    background-color: #000;
    
}

div.box {
	width: 450px;
	display: inline-block;
    margin-left:35px;
}
div.poem{
    text-align: center;
    font-style: italic;
}
.legenda{
    font-size: 15px;
    text-align: center;
}
.tabela{
    margin:auto; 
    border: 1px solid white;
    text-align: center;
}
.tabela th{
   padding: 5px;
   border: 1px solid white;
}
.tabela td{
    padding: 5px;
    border: 1px solid white;
    border-bottom:1px solid white;
 }
 
  .flex-container {
    display: flex;
    flex-direction: row;
    font-size: 30px;
    text-align: center;
  }
  
  .flex-item-left {
    background-color:  #0d0e17;
    padding: 10px;
    flex: 50%;
  }
  
  .flex-item-right {
    background-color:  #0d0e17;
    padding: 10px;
    flex: 50%;
  }
  
  /* Responsive layout - makes a one column-layout instead of two-column layout */
  @media (max-width: 800px) {
    .flex-container {
      flex-direction: column;
    }
  }