
main{
    
}

.lead-container{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lead-video{
    
    width: 100%;
    height: 100vh;
    position: absolute;
    background: url(../assets/video/concert.webp);
    opacity: 0.8;
    background-position: center;
    background-size: cover;
    z-index: -1;
    
}

.lead-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    min-width: 400px;
    width: 70%;
}

.lead-info h1{
    color: aliceblue;
    margin-top: -1rem;
    font-size: 50px;
    width: 90%;
}

.lead-info h2{
    margin-top: -1rem;
    color:  #87CEFA ;
    font-size: 36px;
}

.lead-logo{
    width: 350px;
}


@media (max-width:780px),  (max-height:700px) {

    .lead-info h1{
        color: aliceblue;
        margin-top: -1rem;
        font-size: 34px;
        width: 90%;
    }
    
    .lead-info h2{
        margin-top: -1rem;
        color:  #87CEFA ;
        font-size: 24px;
    }
    
    .lead-logo{
        width: 250px;
    }

    .lead-info{
        min-width: 300px;
    }
    
}

