body {
  background: linear-gradient(
    0deg,
    rgb(17, 51, 161) 0%,
    rgb(136, 34, 195) 100%
  );
  font-family: "Orbitron";
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 25px;
  color: #f890e7;
  margin-bottom: 0px;
  padding-bottom: 5px;
  margin-top: 10px;
}

#spaceStart {
  margin-top: 100px;
  display: block;
  font-size: 30px;
  text-align: center;
  color: white;
  padding: 0;
}

#app {
  display: block;
  margin: auto;
  position: relative;
}

canvas {
  margin-top: 15px;
  margin-bottom: 0px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 450px;
  z-index: 101;
}

#whitebox-text {
  font-weight: bold;
  padding: 10px;
  font-size: 15px;
  margin-top: 50px;
  position: relative;
  top: 50%;
  right: 0;
  width: 200px;
  transform: translateY(-50%);
  color: aquamarine;
}

#background {
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#white-box {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

/* Player COntainer */
.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.card {
  position: relative;
  width: 270px;
  margin: 2em;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 180px 1fr auto;
}
.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-image {
  position: relative;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}

.card-image img {
  max-width: 95%;
  max-height: 95%;
  transition: max-width 0.4s, max-height 0.4s;
}
.card:hover .card-image img {
  max-width: 120%;
  max-height: 120%;
}

.card {
  box-shadow: 0 15px 30px -10px #000;
  cursor: pointer;
}
.card:hover {
  box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.2);
}

.card-body {
  background: #fff;
  padding: 20px 28px;
}

.card-body h2 {
  font-size: 1.8em;
  margin: 4px auto 12px;
}
.selector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s;
}

.card:hover .selector {
  opacity: 1;
}

.card-footer {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.card-footer .info {
  font-size: 0.9em;
  padding: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.card-footer .info:last-child {
  border: none;
}

.card-footer .info .type {
  text-transform: uppercase;
  margin-top: 2px;
  font-size: 0.8em;
}

.card:nth-child(1) .card-footer {
  background: #4891ba;
}
.card:nth-child(2) .card-footer {
  background: #f6b10f;
}
#majin .card-footer {
  background: #959595;
}
#picolo .card-footer {
  background: #9e5161;
}

.selector button {
  background-color: #4891ba;
  color: #fff;
  outline: none;
  border: 2px solid currentColor;
  cursor: pointer;
  padding: 12px 20px;
  transform: translateY(60px);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1em;
  font-weight: bolder;
  transition: opacity 0.3s;
}

.selector button:hover {
  opacity: 0.8;
}
#goku-card .selector button {
  background-color: #f6b10f;
}
#majin .selector button {
  background-color: #959595;
}
#picolo .selector button {
  background-color: #9e5161;
}

.choose-char {
  display: block;
}
