* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    

body{
    background-color: black;
    color: white;   

    min-height: 100vh;
    font-family: "Ubuntu Mono", monospace;
    font-weight: 400;

    > div{
        text-align: center;
    }
}

div{
    position: relative;
}

/* ------------CABECERA-----------------*/
header{
    text-align: center;
    position: sticky;
    top: 0;
    width: 100vw;
    z-index: 1000;
    background-color: black;

    
}



nav ul {
    list-style-type: none;
    
     margin: 10px;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.logo{
    width: auto;
    height: 100px;
}


/* ------------Inicio-----------------*/
/*
#inicio{

    background-image: url("../img/grupo.jpg");
    background-size:100% auto;
    background-repeat: no-repeat;
    

}
*/
#inicio img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}
/* ------------Videos-----------------*/
#calendario{
    /*background-color: rgba(0, 255, 255, 0.192);*/
    height:  600px;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
/* ------------Videos-----------------*/
#videos{
 
    


    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/*
#discos{
    
}
*/
.discoIMG{
    width: 400px;
    height: 400px;
    margin: 10px;
    border-radius: 5px;
    
}