* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

body {
  background: url("../images/fondo-link.webp");
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.header-container {
  margin-top: 40px;
  height: 20%;
  width: 100%;
}

.logo-container {
  height: 150px;
  width: 150px;
  margin: auto;
}

.logo {
  width: 100%;
  background-color: aliceblue;
  border-radius: 100%;
}

.logo-title {
  width: 100%;
  text-align: center;
  margin-top: 25px;
}

.links {
  width: 100%;
  height: 80%;
  /*margin-top: 50px;*/
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}

.card-link {
  width: 35%;
  margin-top: 30px;
  height: 55px;
  background-color: #213383;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  transition: all 600ms;
  cursor: pointer;
  text-decoration: none;
}

.card-link:hover {
  transform: scale(1.03);
}

.card-icon {
  width: 20%;
  height: 100%;
  display: flex;
  color: #213383;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  transition: all 1s;
  background-color: #ffc800;
}

.card-text {
  width: 100%;
  text-align: center;
  font-size: 14px;
}

a {
  color: #213383;
  text-decoration: overline;
}

footer > h4 {
  text-align: center;
  margin-top: 30px;
}

@media (max-width: 1000px) {
  .card-link {
    width: 90%;
  }
}
