
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  html,
  body {
    font-family: 'Roboto Mono', monospace;
    font-size: 1em;
    line-height: 1.5;
    overflow: auto;
    height: 100%;
    width: 100%;
 background: #9796f0;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #fbc7d4, #9796f0);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #fbc7d4, #9796f0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
 overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: -10px;
    text-decoration: none;
    color: inherit;
  }

  .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }

  h3, .player {
      align-self: flex-start;
      padding: 10px;
  }

.main {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

.player {
    width: 350px;
    min-height: 60px;;
    background-color: #fc5bdf;
    margin-top: 20px;
    opacity: 90%;
}

.poem {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

footer p {
    color: rgb(50, 50, 50); 
    font-size: .7em;
    padding-bottom: 10px;
}

img.ig {
    text-align: center;
    margin: 0 auto;
    width: 10%;
    padding: 0 0 20px 0;
    opacity: 80%;
}


audio {
    margin: 30px 20px 20px 10px;
}

 /*MEDIA QUERIES*/

 @media(min-width: 768px){
  
    
    body {
        overflow: auto;
    }

    .main {
        width: 50%;
      }

      audio {
        margin: 20px;
        position: relative;
        top: -74px;
    }

    img.ig {
        width: 8%
} 

 @media(min-width: 1200px) {

    body {
        overflow: auto;
    }
    .main {
        width: 45%;
      }
  }
  