/*------------------------------------------------------------*/
html {
    font-size: 100%;
}

body {
    
    font-family :'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    font-size: 1.25rem;  
    background-color: #1b1a1a;
    color: #fff;

}

/*------------------------------------------------------------*/
.container {
    display: flex;
    flex-direction: column;
    align-items: center;   
    
}

.banner {    
    background-image: linear-gradient(to right, #000005, #131212);
    background-position: center;    
    text-align: center;    
    padding: 10px;
    font-size: 1.0rem;
    margin: 10px;   
}
  
.banner h2 {    
    font-size: 1.0rem;
    color: aquamarine;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.response {
    
}

.box2 {
    display: inline-block;
    padding: 8px 16px;
    
    font-weight: bold;
    text-align: center;
    color: white;
    background: linear-gradient(to right, #070500, #008000, #000);
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
  
.box3 {
    background-color: #060700; /* Color de fondo */
    border: none; /* Borde sin estilo */
    color: white; /* Color de texto */
    padding: 10px 20px; /* Espacio interior del botÃ³n */
    text-align: center; /* AlineaciÃ³n de texto centrado */
    text-decoration: none; /* Sin subrayado */
    display: inline-block; /* Mostrar como bloque en lÃ­nea */
    
    margin: 10px 0; /* Espacio exterior */
    /*cursor: pointer;  */ 
    cursor :pointer;
    border-radius: 5px; /* Bordes redondeados */
}
  
.box3:hover {
    background-color: #250303; /* Color de fondo al pasar el ratÃ³n */
}




/* =================================================================*/

  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*height: 300px;*/
    height: 45vh;
    /*font-size: 20px;*/
    
  }

  .contenedor-izquierda, .contenedor-derecha {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    height: 45vh;    
  }
  
  

/* Estilo para los elementos arastrables */
.box {
    background-color: #023502; /* color de fondo */
    border: none; /* quitar borde */
    color: rgb(250, 246, 246); /* color de texto */
    padding: 10px; /* espacio interior */

    height: 15vh;
        display: flex;
        justify-content: center;
        align-items: center;
        /*line-height: 15vh;*/

        letter-spacing: 2px;
        font-stretch: expanded;

    text-align: center; /* centrar texto */
    align-self: center;
    text-decoration: none; /* quitar subrayado */

    font-weight: bold;  
    font-size: 1.25rem;    

    margin: 4px 2px; /* margen */
    cursor: move; /* cambiar cursor al pasar el mouse */
    border-radius: 5px; /* borde redondeado */
    transition-duration: 0.4s; /* duraciÃ³n de la transiciÃ³n */
    
    grid-column-start: 1;
    grid-column-end: 3;    
  }
  
  .box1 {
    
    background-color: #1a1203; /* color de fondo */
    border: none; /* quitar borde */
    color: rgb(245, 240, 240); /* color de texto */
    padding: 10px; /* espacio interior */
   

    text-align: center; /* centrar texto */
    align-self: center;
    text-decoration: none; /* quitar subrayado */   
    font-size: 1.25rem; 
    
    font-weight: bold;

    height: 15vh;
        display: flex;
        justify-content: center;
        align-items: center;
        /*line-height: 15vh;*/

    margin: 4px 2px; /* margen */
    /*cursor: pointer;  */
    border-radius: 5px; /* borde redondeado */
    transition-duration: 0.4s; /* duraciÃ³n de la transiciÃ³n */
    
    grid-column-start: 3;
    grid-column-end: 5;    
  }
  
  /* al pasar el mouse */
  .box:hover {
    background-color: #040342;
    color: rgb(238, 238, 214);
  }

/*-----------------------------------------------------------*/


