  body {
      background-image: linear-gradient(to right top, #d16ba5, #cc87c2, #c8a2d7, #c8bae5, #cfd0ed, #c8cdef, #bfcaf1, #b6c8f3, #96adf2, #7992ef, #5f76e9, #4b58e1);
      background-size: cover;
      background-position: center;
      min-height: 100vh;
  }

  .container {
      max-width: 1200px;
      margin-top: 50px;
  }

  h1 {
      text-align: center;
      color: #007bff;
  }

  .program-section {
      margin-top: 20px;
      overflow: hidden;
  }

  .program-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, background-color 0.5s ease;
    height: 275px;
  }

  .program-card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.8);
    /*transition: .8s;*/
  }

  .card-body {
    text-align: left;
  }

  .card-title {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1.5em;
    font-weight: normal;
    font-style: normal;
    color: #161A30;
    margin-bottom: 10px;
  }

  .card-text {
    font-size: 16px;
  }

  a{
    text-decoration: none;
    color: coral;
  }

  @media (max-width: 600px) {
    .program-card {
      margin-right: 0;
    }

    header {
      flex-direction: column;
      text-align: center;
      height: 100px;
      padding: 5px 0;
      
    }

    .nombreDelSitio,
    .salir {
      margin: 5px 0;
    }
  }

  .enBlock{
    display: flex;
    vertical-align: middle;
  }

  .enBlock img{
    margin-right: 100px;
  }

  .header::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    backdrop-filter: blur(35px);
    z-index: -1;
  }

  .header::after{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .7s;
  }

  .header:hover::after{
    left: 100%;
  }
 
  .header {
      width: 100%;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
  }

  .nombreDelSitio {
    margin-left: 50px;
  }

  .salir {
    margin-right: 20px;
  }

  .identificacion {
      width: 100%;
      background-color: transparent;
      border: none !important;
      /*border-collapse: collapse;*/
      border-spacing: 0;
      margin: 0 auto;
  }

  .identificacion td {
      border: none !important;
      text-align: center;
      font-size: 0.8em;
      padding: 15px;
  }

  .warning {
      background-color: rgba(255, 165, 0, 0.9);
      color: #fff;
      padding: 15px 20px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: bold;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      width: max-content;
      width: 800px;
      margin: auto;
  }
