*,
*::before,
*::after {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

/* --- */

html {
  font-size: 16px;
}

body {
  font-family: sans-serif;
}

/* --- */

#container {
  min-height: 100vh;

  background-color: bisque;

  display: flex;
  flex-direction: column;
}

/* --- */

#container > h1 {
  padding: 2rem 2rem 0rem 2rem;
  font-size: 3rem;
  text-align: center;
}

#container > h2 {
  padding: 0rem 1rem 1rem 1rem;
  font-size: 2rem;
  text-align: center;
}

#container > .enlaces{
  padding: 1rem;

  background-color: aqua;
  border-radius: 1rem;

  display: flex;
  flex-direction: column;

  border-radius: 1rem;
  gap: 1rem;
}

#container .enlace{
  padding: 1rem;
  background-color: aliceblue;

  display: flex;
  gap: 1rem;

  border-radius: 1rem;
  box-shadow: 2.rem 2-rem 4-rem rgba(0, 0, 0, .5);
  transition: box-shadow .5s;
}

#container .enlace:hover{

  box-shadow: ;
}

#container .enlace img{
  height: 8rem;
  width: 12rem;

  box-shadow: .2rem .2rem .4rem rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
}

#container .enlace .info{
  height: 8rem;
  background-color: darksalmon;

  padding: 1rem;

  flex: auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: space-around;
  justify-content: flex-start;
  align-items: center;
}

#container .enlace .info h2{
  color: rgb(255, 201, 135);

  font-size: 3rem;

  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.8);
}

#container .enlace .info a{
  font-size: 0.8rem;
  text-decoration: none;
}

#container .enlace .info p{
  font-size: 0.8rem;

  /* overflow: scroll; */
  overflow: hidden;
}
