/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilado para el fondo y el contenido */
body {
  background-image: url(https://steamuserimages-a.akamaihd.net/ugc/2310974141604980016/B4EF3A7A2D1772DE26B1A6F51CE33A04FD8BB917/?imw=5000&imh=5000&ima=fit&impolicy=Letterbox&imcolor=%23000000&letterbox=false);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  color: white;
  background-attachment: fixed;
}

/* Estilado del Menú */
nav {
  background: rgb(138 48 48 / 60%); /* Fondo igual al del contenido principal */
  padding: 13px 0;
  position:fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 8px rgb(0 0 0 / 57%);
}

.menu {
  list-style: none; /* Quitar los estilos por defecto de lista */
  display: flex; /* Alinear los elementos horizontalmente */
  justify-content: center; /* Centrar horizontalmente */
  gap: 10px; /* Espacio entre cada elemento */
 
  flex-direction: row  !important;/* Se mantiene en fila horizontal */
}
  .menu li {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 25px;
  }
  
  .menu li a {
    text-decoration: none;
    color: #f9f9f9;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border: 2px solid #bc4f47a1;
    border-radius: 10px;
  }
  
  .menu li a:hover {
    background-color: #c83e3573;
    color: #ffffff;
  
  
}


/* Encabezado (debajo del Menú) */
header {
  margin: 80px 0 20px 0;
  text-align: center;
  width:100%;
  

  
}

header h1 {
  color: rgb(255, 255, 255);
  font-family: 'Press Start 2P', sans-serif;
  font-size: 43px;
  text-shadow: 2px 2px 5px rgba(5, 5, 5, 0.781);
}

/* Contenido Principal */
.contenido-principal {
  background: rgb(0 0 0 / 35%); /* Haz el fondo más claro */
  color: white;
  padding: 10px;
  max-width: 1220px;
  margin: 60px auto 0 auto;
  font-family: 'Roboto', sans-serif;
  border-radius: 3px;
  text-align: justify;
  font-size: 35px; /* Aumentar el tamaño del texto principal */
}

/* Responsividad */
@media (max-width: 896px) {
  header h1 {
    font-size: 40px;
  }
}

@media (max-width: 414px) {
  header h1 {
    font-size: 30px;
  }
}

  .menu li {
    font-size: 7px;
  }

  .contenido-principal {
    font-size: 18px;
  }


 







































