/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Aplicar estilo global */
  html, body {
    font-family: 'Montserrat', sans-serif;
    background-color: #333;
    color: #eee;
    height: 100%;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  button {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .container{position: relative !important;}