.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3));
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content{
    text-align: center;
}

.content h1{
    font-size: 160px;
    transition: 0.5s;
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}

.content span{
    font-size: 160px;
    transition: 0.5s;
    -webkit-text-stroke: 2px #986cec;
    color: transparent;
}

.content span:hover{
    color: #986cec;
    cursor: context-menu;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    
}

.content h1:hover{
    color: #fff;
    cursor: context-menu;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    
}

.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}


@media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
}

.sla{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
    font-weight: 600;
    transition: 0.5s;
}

.sla:hover{
    
    -webkit-text-stroke: 2px white;
    color: transparent;
    box-shadow: 0 0 20px rgba(255,255,255, 1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
