
body {
    background-image: url(https://static.vecteezy.com/system/resources/previews/007/276/766/non_2x/doodle-fast-food-icons-seamless-pattern-with-food-icons-fast-food-set-icons-fastfood-background-food-icons-on-black-background-hand-drown-pattern-with-fast-food-icons-free-vector.jpg);
    background-size: cover; 
  background-repeat: no-repeat; 
  background-attachment: fixed;

  
}

body {
  color: #2fb323;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
}
body h1 {
  margin: 0;
  padding-bottom: 6rem;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  font-family: 'Teko', sans-serif;
  font-size: 10rem;
  text-transform: uppercase;
  animation: glow 2s ease-in-out infinite alternate;
  text-align: center;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px #2da948;
  }
  to {
    text-shadow: 0 0 30px #2ff32f, 0 0 10px #3cdb3c;
  }
}

h1 { 
    color: white;
    padding: 100px;
    font: sans-serif;
    font-size: 150px;
    border: none;
    text-align: center;

}
p{
    color:rgb(163, 252, 127);
    font: 70px; 
    border:none;
    font-size: 40px;
    text-align: center;

    animation-duration: 3s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}


h5{ 
    color:white;
    font: 200px;
    border:none;
    text-align: center;
    font-size: 50px;
    letter-spacing: 1px;
}
h6{ 
    color:white;
    font:100;
    border:none;
    text-align: center;
    font-size: 30px;
}
/* Asegura que body y html ocupen toda la pantalla */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  
  /* Contenedor que centra los botones */
  .contenedor-botones {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 20vh;
    text-align: center;
  }
  
  /* Estilos generales para ambos botones */
  .mi-boton,
  .mi-boton2 {
    padding: 15px 15px;
    font-size: 18px;
    font-weight: bold;
    border: white;
    border-width: 10ch;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;

    
  }
  
  /* Botón 1 */
  .mi-boton {
    background-color: #0c7527;
    color: white;
    text-align: center;
  }
  .mi-boton:hover {
    background-color: #0e7c2a;
    transform: scale(1.05);
    text-align: center;
  }
  
  /* Botón 2 */
  .mi-boton2 {
    background-color: #91d328;
    color: white;
    text-align: center;
  }
  .mi-boton2:hover {
    background-color: #7cc719;
    transform: scale(1.05);
  }
  