: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 {
  color: aliceblue;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 3rem;
  text-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  text-align: center;
}

/* --- */

.enlaces {
  background-color: rgb(196, 246, 229);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0.5rem;
}

.enlaces .enlace {
  padding: 1rem;
  background-color: rgb(166, 216, 219);
  display: flex;
  border-radius: 0.5rem;
}

.enlaces .enlace img {
  height: 10rem;
  width: 12rem;
  padding: 1rem;
}

.enlaces .enlace p {
  color: coral;
  padding: 1rem;
  font-size: 1.5rem;
  background-color: rgb(186, 226, 229);
  flex: auto;
  border-radius: 0.5rem;
}
