* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Enriqueta", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card {
  transform-style: preserve-3d;
  min-height: 90vh;
  width: 30rem;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2), 0 20px 50px rgba(0, 0, 0, 0.2);
  padding: 0 5rem;
  border-radius: 30px;
}
.adidas {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adidas img {
  width: 7rem;
  z-index: 2;
  transition: all 0.75s ease-out;
}
.circle {
  height: 9rem;
  width: 9rem;
  background: linear-gradient(
    to right,
    rgba(2, 2, 51, 0.651),
    rgba(238, 238, 238, 0.75)
  );
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.info h1 {
  font-size: 2rem;
  transition: all 0.75s ease-out;
}
.info h3 {
  font-size: 1.2rem;
  font-weight: lighter;
  color: #585858;
  padding: 3rem 0rem;
  transition: all 0.75s ease-out;
}
.sizes {
  display: flex;
  justify-content: space-between;
  transition: all 0.75s ease-out;
}
.sizes button {
  padding: 0.5rem 1.5rem;
  background: none;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
  color: #585858;
  font-weight: bold;
}

button.active {
  color: #ffffff;
  background: #585858;
}
.buy {
  margin-top: 2rem;
  transition: all 0.75s ease-out;
}
.buy button {
  padding: 1rem 0rem;
  border-radius: 30px;
  width: 100%;
  background-color: #123f94;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bolder;
  cursor: pointer;
  border: none;
  transition: all 0.75s ease-out;
}
