@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  outline-style: none;
}

/* Estilos generales */
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #eae0ff;
}

/* Estilos del encabezado h1 */
h1 {
  margin-top: 70px;
  margin-bottom: 20px;
}

/* Estilos de la lista ul */
ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centrar los elementos horizontalmente */
}

/* Estilos de los elementos li */
li {
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Estilos para el nombre del archivo */
li p {
  margin: 5px 0;
}
