/*Reglas simples, la mayoría de normas css se agregan con clases bootstrap*/
body {
    background-color: black;
    color: whitesmoke;
}
video{
    width: 60%;
}
th[scope="col"]{
    background-color: #400040;
}
.video{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.videos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.btn {
    background-color: #400040;
    border: none;
}
li .card{
    background-color: transparent;
    border: none;
    width: 100%;
}
.inicioSesion{
    background-color: #400040;
}
.container-fluid{
    display: flex;
    justify-content: space-around;
}
.modal-header{
    background-color: #400040;
}
.btn-primary{
    float: end;
    background-color: #400040;
}
.navbar-nav{
    display: flex;
    justify-content: space-around;
    width: 60vw;
}
.btn:hover{
    background-color: #BF00BF;
}
.dropdown-menu{
    background-color: #400040;
}
.dropdown-item{
    color: white;
}
.dropdown-item:hover{
    background-color: #BF00BF;
    color: white;
}
.containerHeader a {
    background-color: #400040;
    border: none;
    border-radius: 10%;
}
.containerHeader a:hover{
    background-color: #BF00BF;
    border-radius: 10%;
}
.containerHeader{
    background-color: #400040;
}
.accordion-body{
    margin: 0;
    padding: 0;
}
.accordion-item {
    background-color: black;
    color: white;
}
.navbar-collapse{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.accordion-button:hover {
    background-color: #400040;
    color: white;
}
.card{
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
}
.cards {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}
.cards card{
    width: 100%;
}
#volver a {
    background-color: white;
    color: black;
}
#volver:hover a {
    background-color: #400040;
    color: white;
}
i{
    margin-right: 5px;
}
.modal-dialog{
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
footer{
    margin-top: 20px;
    background-color: #400040;
    color: white;
}
footer section{
    background-color: #400040;
}
footer div{
    background-color: #400040;
}
.footer{
    background-color: #400040;
}
/*Reglas para dispositivos móviles no implementadas con bootstrap*/
@media screen and (max-width: 768px)
{
    .navbar-collapse{
        margin-top: 10px;
    }
    .cards {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .cards .card {
        width: 100%;
    }
    .col-md-4 nav{
        display: flex;
        justify-content: center;
    }
}