@charset "UTF-8";

/* Typical Device Breakpoints - (W3C)
-------------------------------
Pequenas telas: - 600px
Celular: 600px - 768px
Tablet:  768px - 992px
Desktop: 992px - 1200px
Grandes Telas: 1200px -
*/

@media screen and (min-width: 768px) {

      i#burguer{
      display: none;
  }

  menu{
    display: block;
  }

 nav > a{
    display: inline-block
  }

  main{
    width: 768px;
  }

}




