.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{
    color: var(--gold);
}

.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;
    transition: all .3s ease-in-out;
    animation: glow 2s infinite linear;
}

.hero .left button:hover{
    background-color: var(--purple);
    color: var(--dark);
}

.hero .player{
    width: 100%;
    height: 100%;
}

.player-wrapper{
    width: 75%;
    position: absolute;
    right: 40px;
    top: -30px;
    z-index: -1;
}

@keyframes glow{
    0%{
        transform: scale(1);
        box-shadow: 0 0 0 0px #00000000;
    }
    60%{
        transform: scale(1.05);
        box-shadow: 0 0 0 0px #b68cf96d;
    }
    100%{
        box-shadow: 0 0 0 0px #00000000;
    }
}

/*  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%;
    }
    
}