* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

.container {
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr 1fr auto;
}

.content {
  margin: 0 auto;
  font-size: 20px;
}

.title {
  margin: 25px auto;
  letter-spacing: 1.1px;
  text-align: center;
  font-weight: bold;
}


.underline {
  margin: -15px auto 0;
  width: 200px;
  height: 1.5px;
  background-color: #7894e0
}

.cards {
  margin: 50px auto;
  width: 80vw;
  max-width: 1400px;
  flex-wrap: wrap;
  display: flex
}

@keyframes bounceEffect {
  0% {
    transform: scale(1.1);
    opacity: 0
  }
  50% {
    transform: scale(.9);
    opacity: .75
  }
  100% {
    transform: scale(1);
    opacity: 1
  }
}

.card {
  width: 360px;
  margin: 50px auto;
  padding: 15px 25px;
  animation: 1s ease-in-out bounceEffect;
  box-shadow: 0 20px 25px 5px #000000cc, 0 8px 10px -2px #000000cc;
  border-radius: 15px;
  text-align: center
}

.container-img {
  overflow: hidden;
  width: 100%
}

.content img {
  width: 200px;
  transition: .7s;
  border-radius: 15px;
  height: auto
}

.content .container-img img:hover {
  transform: scale(1.1)
}

.content-card {
  height: 100%;
  margin: 0 auto;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  display: flex
}

.description {
  margin: 0 auto;
  padding: 5px
}

.title-article p {
  font-weight: bold
}

.content ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  text-align: justify;
}

.content li {
  width: 100%;
  list-style: none;
  align-items: center;
  justify-content: space-around;
  display: flex;
}

.content a {
  background-color: antiquewhite;
  text-decoration: none;
  color: #0a314d;
  /* padding: 5px 10px; */
  font-weight: bold;
  cursor: pointer;
  background-color: #fad390;
  border: transparent;
  border-radius: 5px;
  letter-spacing: 1.2px;
  padding: 10px 20px;
  transition: .2s ease-in-out;
  display: inline-block;
  box-shadow: 1px 2px 1px #c5a689, -2px -2px 1px;
  /* width: 150px; */
}

/* .content .btn-link a{

} */

.content a:hover {
  scale: .99;
  background-color: #f8c291;
  box-shadow: inset 1px 2px 1px #c5a689, -2px -2px 1px;
  padding: 10px 20px 10px 30px;
}