body {
    background: #f0f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: 	#2c2c2c;
  }
  
  .card-link {
    text-decoration: none;
  }
  
  .card {
    width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    cursor: pointer;
    border: 4px solid rgb(219, 217, 86);
    margin-left: 20px;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }
  
  .card-img {
    width: 100%;
    height: auto;
    display: block;
  }

  h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    text-shadow: 2px 2px #000;
    margin-bottom: 30px;
    color: #97dff9;
    letter-spacing: 2px;
    position: absolute;
    top: 70px;
  }

  .subtitle{
    font-family: 'Press Start 2P', cursive;
    font-size: 18px;
    text-shadow: 2px 2px #000;
    margin-bottom: 30px;
    color: #85cf41;
    letter-spacing: 2px;
    margin-top:10px;
    text-align: center;
    margin-top: 20px;
  }

  #site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffffdd;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    z-index: 9999;
    border-top: 1px solid #ccc;
  }

  #site-footer a {
    color: #333;
    text-decoration: none;
  }

  #site-footer a:hover {
    text-decoration: underline;
  }

  #top-ad-banner {
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    z-index: 9999;
    width:100%; 
    height:60px !important; 
    position:fixed; 
    top:0; left:0; 
    z-index:9999; 
    background:#fff;
  }

  .ins_google_ads {
    display: inline-block;
    width: 320px;
    height: 60px  !important;
  }

  /* Tablets */
  @media (min-width: 500px) {
    .ins_google_ads {
      width: 468px;
      height: 60px  !important;
    }
  }

  /* Escritorio */
  @media (min-width: 800px) {
    .ins_google_ads {
      width: 728px;
      height: 60px  !important;
    }
  }
