:root {
  /* Tipografías  */
  --font-family01: sans-serif;

  /* Tamaños de letra */
  --font-size01: 16px;
}

/* --- */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

img {
  height: 150px;
  width: 150px;

  margin-top: 10px;

  object-fit: contain;
}

/* --- */

html {
  font-size: var(--font-size01);
}

body {
  font-family: var(--font-family01);
}

/* --- */

#container {
  height: 100vh;
}

h1 {
  height: 10vh;

  display: flex;
  justify-content: center;
  align-items: center;

  border-bottom: 1px solid black;
  padding-bottom: 2.5px;
}

.enlaces {
  height: 90vh;
  width: 60%;

  margin: 0 auto;

  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.enlace {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.enlace p {
  font-weight: bold;

  font-size: 18px;
}