html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    overflow-x: hidden;
    background-color: rgba(89, 0, 255, 1);
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}

.background {
    filter: blur(3px);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    background-color: rgba(89, 0, 255, 1);
    background-image: url("https://embergamedev.servegame.com/img/FondosPag/Prueba_fondo_2.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-origin: center;
    background-size: 100% 100%;
    z-index: -1;
  }

  /*====== Section 1 =============*/
  .section1 {
    margin: auto;
    margin-top: 20%;
    padding: 0px;
    position: relative;
    width: 70%;
    height: auto;
    background-color: rgba(0, 61, 153, 0.9);
    align-items: center;
    justify-content: center; 
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3); 
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    z-index: 1;
  }


  /*====== Tabla =============*/
  #customers {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  #customers td, #customers th {
    border: 1px solid #ddd;
    padding: 8px;
  }
  
  #customers tr:nth-child(even){background-color: #f2f2f2;}
  
  #customers tr:hover {background-color: #ddd;}
  
  #customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #04AA6D;
    color: white;
  }