/*==========  Mobile First Method  ==========*/

  /* Custom, iPhone Retina */
  @media only screen and (min-width : 320px) {
    .maiusculo { font-size: 80px; }
    .titulo { font-size: 60px; }
    .descricao { font-size: 38px;}
    .rodape-endereco { font-size: 30px;}
  }

  /* Extra Small Devices, Phones */
  @media only screen and (min-width : 480px) {

  }

  /* Small Devices, Tablets */
  @media only screen and (min-width : 768px) {

  }

  /* Medium Devices, Desktops */
  @media only screen and (min-width : 992px) {

  }

  /* Large Devices, Wide Screens */
  @media only screen and (min-width : 1200px) {
    .titulo { font-size: 30px; }
    .maiusculo { font-size: 60px; }
    .descricao { font-size: 16px }
    .rodape-endereco { font-size: 14px;}
  }


  body {
    background-color: #090051;
    color: #C3C3C3;
    text-align: center;
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  }

  .maiusculo {
    padding-top: 50px;
    text-transform: uppercase;
  }

  .titulo {
    font-weight: bolder;
    padding-top: 30px;
  }

  .rodape-endereco {
    padding-top: 50px;
  }
