html, body {
  margin:0;
  padding:0;
  overflow: hidden;
  width:100%;
  height:100%;
}

.titulo-banners {
  position: relative;
  font-size: 17px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#caixa {
    height: 100%;
    display: grid;
    grid-template-rows: auto 44px;
    grid-template-areas: "topo-player"
                         "rodape";

}

#rodape {
  grid-area: rodape;
  background-color: rgba(0, 42, 63, 0.8);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 0px;
}

  /*Estilo Banner Publicidade*/
  /*Modal Banner App*/
    
  .banners {
    width: 728px;
    height: 90px;
    border-radius: 5px;
    position: relative;
    font-size: 20px;
    color: #fff;
}
  /*Fim Banner Publicidade*/
  
 
  @media only screen and (max-width: 991px) {
    .banners {
      width: 345px;
      height: auto;
    }
    #caixa {
      grid-template-rows: auto 38px;
    }
  }
  

  /*Modal*/
    .copyright1 {
      position: relative;
      background-color: rgba(0, 0, 0, 0);
      bottom: 5px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 10px;
      white-space: nowrap;
      padding-top: 1px;
      padding-bottom: 1px;
      padding-left: 2px;
      padding-right: 2px;
    }
    @media screen and (max-width: 768px) {
      .copyright1 {
        position: relative;
        font-size: 10px;
        bottom: 3px;
      }
    }

    
    
    body {
      font-family: "Open Sans", sans-serif;
      color: #272829;
    }
    
    a {
      color: rgba(255, 255,255, 0.6);
    }
    
    a:hover {
      color: rgba(255, 255,255, 1);
      text-decoration: none;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: "Raleway", sans-serif;
    }