/*
 * Base structure
 */

body {
  background-image: url(../img/back.jpg);  
  background-repeat: no-repeat;
  background-position: top center;  
  min-height:1080px;
}

.cover-container {
  max-width: 1000px;
}

.canais {
  margin-top:700px;
}

.canais img {
  width:450px;
}

.mobile {
  display: none;
}

@media only screen and (max-width: 970px) {
  body {
    background-image: none;
    border: none;
    min-height:0px;
  }
  .canais {
    display: none;
  }
  .mobile {
    display: inline;
  }
  .mobile img {
    max-width: 100%;
  }

}

