body {
  background: rgb(85, 144, 189);
  background: linear-gradient(90deg, rgb(195, 77, 111) 0%, rgb(148, 35, 101) 54%, rgb(189, 18, 18) 82%);
  text-align: center;
  font-family: sans-serif;
}

h1 {
  color: white;
  font-size: 60px;
  font-family: "Barlow", sans-serif;
  display: inline-block;
}

img {
  display: inline-block;
  width: 50%;
  border-radius: 20%;
  box-shadow: 0 6px 60px rgb(23, 23, 255);
  background-color: rgba(255, 255, 255, 0.292);
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  margin-top: 20px;
}

.name {
  text-transform: capitalize;
  font-weight: bold;
  font-size: 1.2rem;
}

.card p {
  color: azure;
  margin: 5px;
}

.buttons {
  position: relative;
  justify-content: space-around;
  margin: 20%;
  margin-bottom: 50px;
  margin-top: 30px;
}

.buttonAll {
  background-color: #d2ba22;
  padding: 20px;
  border-radius: 20%;
  font-size: 20px;
  font-weight: bold;
  color: rgb(24, 20, 16);
  cursor: pointer;
}

button {
  background-color: #b725b7;
  padding: 20px;
  border-radius: 20%;
  font-size: 20px;
  font-weight: bold;
  color: antiquewhite;
  cursor: pointer;
}

button:hover {
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.buscador {
  display: block;
  background-color: #b725b7;
  padding: 20px;
  border-radius: 20%;
  font-size: 20px;
  color: rgb(223, 220, 189);
  cursor: pointer;
  transition: width 3s ease-in-out;
  width: 1.8%;
}

.buscador:focus {
  width: 30%;
}

.cutreball {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  width: 450px;
  height: 300px;
}

.box img {
  width: 100%;
  height: auto;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .box img {
    height: 50%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    -o-object-position: center center;
       object-position: center center;
  }
}/*# sourceMappingURL=styles.css.map */