.hero{
    width: 100%;
    height: 100vh;
    background: #032136;
    background: radial-gradient(circle, rgba(3, 33, 54, 1) 25%, #020617 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}


.viewport-hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    padding: 40px 20px;
    text-align: center;
}

.hero-title h1{
    font-size: 8rem;
    display: flex;
    flex-direction: column;
    font-weight: 900;
    letter-spacing: 1px;
}

.hero-title span{
        background-image: linear-gradient(90deg,rgba(34, 207, 238, 1) 0%, rgba(37, 100, 235, 1) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
}

.hero-title p{
    color: #777;
    max-width: 75ch;
}

.hero-options{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    gap: 20px;
}

.hero-options a{
    text-decoration: none;
}

.ver-stream{
    background-color: var(--color-activo);
    padding: 20px 40px;
    border-radius: 50px;
    color: #020617;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.ver-stream:hover{
    box-shadow: 0px 0px 15px var(--color-activo);
    
}

.unirse-discord{
    background-color: #4358a5;
    padding: 20px 40px;
    border-radius: 50px;
    color: var(--color-texto);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;

}

.unirse-discord:hover{
    background-color: #7289da;
}

.hero-social{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.hero-social a{
    background-color: #0F172A;
    border-radius: 50%;
    padding: 10px 10px;
    color: var(--color-texto);
    font-size: 1.7rem;
    font-weight: 600;
    transition-duration: 0.3s;
}

.hero-social a:hover{
    transform: translateY(-2px);
    padding: 12px 12px;
}

.hero-social .youtube:hover{
    color: #c4302b;
    
}

.hero-social .twitter:hover{
    color: #00acee;
    
}

.hero-social .instagram:hover{
    color: #C13584; 
}

.hero-social .twitch:hover{
    color: #6441a5;
    
}