  @font-face {
    font-family: 'folkardregular';
    src: url('/fonts/folkard_-webfont.woff2') format('woff2'), 
         url('/fonts/folkard_-webfont.woff') format('woff');    
    font-weight: normal;
    font-style: normal;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%), url("/img/construccion/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    min-height: 100vh;
    font-family: 'folkardregular', serif; 
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
  }
  
  .logo-container img {
    width: 180px;
    height: auto;
    object-fit: contain;
    background-color: transparent;
  }
  
  header {
    display: none;
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.575);
    border-radius: 20px;
    border: 1px solid #7aa01bfe;
    text-align: center;
    max-width: 90%; 
    width: 350px; 
    min-height: 200px;
    padding: 20px;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .overlay-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  /*.data {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: block;
  }*/
  
  .grid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .grid-container p {
    color: white;
    text-align: center;
    font-size: clamp(2rem, 4vw, 1.8rem); 
    margin: 10px 5px; 
    line-height: 1.4; 
  }
  
  
  @media (min-width: 768px) {
    .overlay {
        width: 600px; 
        min-height: 300px; 
        padding: 40px;
    }
    .logo-container img {
        width: 250px; 
    }
    .grid-container p {
        font-size: 2.2rem; 
    }

  }
  
