:root {
  --color1: #93c8d0;
  --color2: #749ccb;
}

@font-face {
  font-family: "Pokemon";
  src: url(../recursos/Pokemon\ Hollow.ttf);
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
}

*, *::before, *::after {
  box-sizing: inherit;
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  font-family: sans-serif;
  background-color: var(--color1);
  background-image: url(fondoBotton.svg), url(fondoBotton.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: right 50vw bottom 50vh, left 50vw top 50vh;
  animation: cambiar 15s ease-in-out infinite; /*25a*/
}

@keyframes cambiar {
  0% {
    background-position: -5 50%;
    filter: saturate(0);
  }
  50% {
    background-position: 55% 550%;
    filter: saturate(1);
  }
  75% {
    background-position: 10 50%;
    filter: saturate(1);
  }
  100% {
    background-position: -5 50%;
    filter: saturate(0);
  }
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.card {
  background-color: white;
  width: 328px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}
.card-header {
  width: 100%;
  display: block;
}
.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--color2);
}
.card-body-contentimg {
  border: 5px solid var(--color2);
  border-radius: 50%;
  background-color: #91bbeb;
  box-shadow: 0px -10px 20px var(--color2);
  margin-top: -60px;
}
.card-body-contentimg-img {
  padding: 20px;
  filter: drop-shadow(5px 7px 7.5px rgba(0, 0, 0, 0.7));
  -webkit-filter: drop-shadow(5px 7px 7.5px rgba(0, 0, 0, 0.7));
}
.card-body-title {
  margin: -10px -10px;
  font-size: 3rem;
}
.card-body-title span {
  color: var(--color2);
  font-family: "Pokemon";
  font-weight: 900;
}
.card-body-text {
  font-size: 20px;
}
.card-footer {
  display: flex;
  justify-content: space-around;
}
.card-footer-poder {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 1.4rem;
}

.botton {
  display: flex;
  margin: 10px;
  align-items: center;
  justify-content: center;
  cursor: url(../imagenes/2.svg), auto;
}
.botton-parrafo {
  display: flex;
  font-size: 25px;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  color: var(--color2);
  background-color: white;
  padding: 5px 20px;
  border-radius: 5px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.botton-parrafo:hover {
  background-color: var(--color2);
  color: white;
  transform: scale(105%);
  -webkit-transform: scale(105%);
  -moz-transform: scale(105%);
  -ms-transform: scale(105%);
  -o-transform: scale(105%);
}/*# sourceMappingURL=estilos.css.map */