.hero {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 10rem;
}

.hero .left {
  color: var(--light);
  padding-top: 180px;
}

.hero .left h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 90px;
}

.hero .left h1 span:first-child {
  color: var(--gold);
}

.hero .left h1 span:last-child {
  text-decoration: underline;
}

.hero .left h3 {
  font-size: 40px;
  font-weight: 300;
  margin-top: 30px;
}

.hero .left button {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  font-size: 22px;
  background-color: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  margin-top: 50px;
  animation: glow 2s infinite linear;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.hero .left button:hover {
  background-color: var(--purple);
  color: var(--dark);
}

.hero .player {
  height: 100%;
  width: 100%;
}

.player-wrapper {
  width: 75%;
  position: absolute;
  right: 40px;
  top: -30px;
  z-index: -1;
  /* border: 1px solid red; */
}

@keyframes glow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0);
  }
  60% {
    transform: scale(1.05);
    box-shadow: 0 0 0 5px rgba(182, 140, 249, 0.4274509804);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
/* ********** Responsive ************* */
@media screen and (max-width: 1200px) {
  .hero {
    flex-direction: column;
    width: 100%;
    padding: 0 3rem;
    position: relative;
  }
  .hero .left {
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
  .hero .left h1 {
    font-size: 75px;
    font-weight: 600;
    line-height: 6rem;
    -webkit-text-size-adjust: auto;
       -moz-text-size-adjust: auto;
            text-size-adjust: auto;
  }
  .hero .left h1 br {
    display: none;
  }
  .hero .player {
    position: relative;
    width: 120%;
    right: 15%;
  }
  .player-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 55%;
    left: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 640px) {
  .hero {
    padding: 0 1.5rem;
  }
  .hero .left button, .hero .left h3 {
    zoom: 1.3;
  }
  .hero .left button {
    margin-left: 0.5rem;
  }
  .hero .player {
    width: 200%;
    right: 90%;
  }
}/*# sourceMappingURL=Hero.css.map */