:root {
  /* Tipografías  */
  --font-family01: sans-serif;

  /* Tamaños de letra */
  --font-size01: 16px;
}

/* --- */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

/* --- */

html {
  font-size: var(--font-size01);
}

body {
  font-family: var(--font-family01);
}

/* --- */

#container {
  height: 100vh;

  background-color: cornflowerblue;
  background-image: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.5)
  );

  padding: 1rem;

  display: flex;
  flex-direction: column;
  /* align-items: center; */

}

/* --- */

h1 {
  margin-bottom: 2rem;
  color: aliceblue;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 4rem;
  text-align: center;
  text-shadow: .2rem .2rem .4rem rgba(0, 0, 0, 0.5);
}

/* --- */

h2 {
  margin-top: 2rem;
  
  font-size: 4rem;
  text-shadow: .2rem .2rem .4rem rgba(0, 0, 0, 0.5);
}

a {
  text-decoration: none;
}

.enlaces {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(0, 0, 0, 0.1);
}

.enlaces,.enlace{
  padding: 1rem;
  display: flex;
  gap: 1rem;

  border-radius: .5rem;
}

.enlace  {
  background-color: rgba(226, 226, 226, 0.6);
}

.enlaces .enlace a img {
  height: 12rem;
  width: 16rem;
  border-radius: .5rem;
}

.enlaces .enlace .informacion {
  border-radius: .5rem;
  font-size: 2rem;
  
  background-color: rgba(238, 232, 232, 0.6);
  padding: 1rem;
  color: brown;

  text-shadow: .1rem .1rem .2rem black;

  display: flex;
  justify-content:center;
  flex-direction: column;
  flex:auto;
}