body {
  background-color: #FFF;
  background-image: url('../static/fondo.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Lexend Deca', sans-serif;
  overflow-x: hidden;
}
.link-btn {
  background-color: #0365a8;
  border-radius: 2rem;
  color: #FFF;
  display: flex;
  /* padding: 0.5rem 2rem; */
  padding: 0.5rem;
  width: 100%;
}
.link-btn > .text-container {
  align-self: center;
  padding-left: 0.5rem;
  font-size: 0.7rem;
}
.link-btn > img {
  align-self: center;
  display: inline-block;
  width: 1.2rem;
}
@media (max-width: 1280px) {
  body {
    background-image: url('../static/fondo-responsive.jpg');
  }
}
@media (min-width: 1024px) {
  .link-btn {
    justify-content: space-around;
    padding: 0.75rem 2rem;
  }
  .link-btn > .text-container {
    align-self: center;
    padding-left: 0;
    font-size: 1.2rem;
  }
  .link-btn > img {
    width: 2.25rem;
  }
}