: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;

  padding: 1rem;

  background-color: cornflowerblue;
  background-image: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.5)
  );

  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* 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);
}

/* --- */

.enlaces {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: .5rem;
  
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --- */

.enlaces .enlace {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: .5rem;
  
  display: flex;
  gap: 1rem;
}

.enlaces .enlace a {
  
}

.enlaces .enlace a img {
  height: 12rem;
  width: 16rem;
}

.enlaces .enlace p {
  padding: 1rem;
  
  color: coral;
  font-size: 2rem;
  text-shadow: .1rem .1rem .2rem rgba(0, 0, 0, 0.5);
  
  background-color: aliceblue;
  border-radius: .5rem;
  
  display: flex;
  align-items: center;
  flex: auto;
}



