* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.2%;
}
@font-face {
  font-family: "rick";
  src: url("../resources/get_schwifty.ttf");
}

.header {
  display: flex;
  flex-direction: row;
  width: auto;
  height: 270px;
  background-color: #000000;
  justify-content: space-around;
  align-items: center;
  font-family: "rick", sans-serif;
}
.titulo {
  font-size: 45px;
  color: #00b5cd;
  cursor: alias;
  padding: 10px;
  text-align: center;
}
.titulo a {
  text-decoration: none;
  color: #00b5cd;
}

.API {
  display: flex;
  font-size: 30px;
  color: #e198ee;
  cursor: alias;
  padding: 10px;
}

.link {
  text-decoration: none;
}
.link:visited {
  color: #e198ee;
}

.Logo img {
  width: auto;
  height: 250px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  width: auto;
  margin: 0;
  align-items: flex-start;
  background-color: black;
}

.tarjet {
  /*     border:2px solid #B1D75C;
    border-radius: 12px; */
  height: auto;
  width: auto;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  margin: 15px;
  font-family: "Nunito", sans-serif;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.tarjet img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.Title_card {
  margin-top: 10px;
  font-size: 1.6rem;
  padding: 2px 12px;
  background-color: #1ef30d;
  box-shadow: 3px 3px 0px #acf5da;
  border: 1px solid #000000;
}

.description-tarjet {
  width: 100%;
  padding: 0 20px;
  font-size: 1.2rem;
  color: black;
  margin: 14px;
  font-size: 1.4rem;
}

.button {
  margin-top: 10px;
  font-size: 1.6rem;
  padding: 2px 12px;
  background-color: #1ef30d;
  box-shadow: 3px 3px 0px #acf5da;
  border: 1px solid #000000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.button:hover {
  background-color: #1ef30d;
  box-shadow: 0px 15px 20px acf5da;
  color: black;
  /* transform: translateY(-7px); */
  animation: swing 1s ease;
  animation-iteration-count: 1;
}

@keyframes swing {
  15% {
    transform: translateX(5px);
  }
  30% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(3px);
  }
  65% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

.button:active {
  transform: translateY(-7px);
}

.tarjet_button {
  height: auto;
  width: auto;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black;

  font-family: "Nunito", sans-serif;
  border-radius: 7px;
}

.Alive {
  margin-top: 10px;
  font-size: 1.6rem;
  padding: 2px 12px;
  background-color: #1ef30d;
  box-shadow: 3px 3px 0px #acf5da;
  border: 1px solid #000000;
}
.Dead {
  margin-top: 10px;
  font-size: 1.6rem;
  padding: 2px 12px;
  background-color: red;
  box-shadow: 3px 3px 0px #acf5da;
  border: 1px solid #000000;
}
.unknown {
  margin-top: 10px;
  font-size: 1.6rem;
  padding: 2px 12px;
  background-color: #e198ee;
  box-shadow: 3px 3px 0px #acf5da;
  border: 1px solid #000000;
}
