/*Principalmente cambio los colores por defecto, y al hacer hover de los botones de bootstrap, además de muchas características básicas*/
body{
    background-color: #400040;
    font-family: 'Macondo', cursive;
}
video{
    width: auto;
    height: 60vh;
}
h2{
    text-align: center;
    color: black;
}
th[scope="col"]{
    background-color: #400040;
}
.btn {
    background-color: #400040;
    border: none;
}
.btn-primary{
    float: end;
    background-color: #400040;
}
.navbar-nav{
    display: flex;
    justify-content: space-around;
    width: 60vw;
}
.carousel-control-prev{
    width: 10%;
    height: 20%;
    margin-top: 10%;
}
.carousel-control-next{
    width: 10%;
    height: 20%;
    margin-top: 10%;
}
.btn:hover{
    background-color: #BF00BF;
}
.containerHeader a {
    background-color: #400040;
    border: none;
    border-radius: 10%;
}
.containerHeader a:hover{
    background-color: #BF00BF;
    border-radius: 10%;
}
.containerHeader{
    background-color: #400040;
}
#jutsuLink{
    font-size: 2em;
}
#jutsuLinkContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    color: white;
}
#jutsuLink{
    color: #400040;
}
#jutsuLink:hover{
    color: #BF00BF;
}
#developerLink{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    margin-top: 20vh;
    color: white;
    text-align: center;
}
.dropdown-menu{
    background-color: #400040;
}
.dropdown-item{
    color: white;
}
.dropdown-item:hover{
    background-color: #BF00BF;
    color: white;
}
.navbar-collapse{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h6{
    font-family: 'Oleo Script Swash Caps', cursive;
}
h2{
    color: white;
}
label{
    text-align: center;
}
.inicioSesion{
    background-color: #400040;
}
.modal-header{
    background-color: #400040;
}
.cards {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}
.card{
    width: 18rem;
}
footer{
    margin-top: 20px;
    background-color: #400040;
    color: white;
}
footer section{
    background-color: #400040;
}
footer div{
    background-color: #400040;
}
.footer{
    background-color: #400040;
}
.carousel-inner{
    height: 40vw;
    background-color: black;
}
.breadcrumb-item{
    color: white;
}
li .card{
    background-color: transparent;
    border: none;
}
#progress{
    background-color: black;
    border: "solid 1px #400040";
    border-radius: 5%;
}
#progressBar{
    background-color: #400040;
}
.alert{
    visibility: hidden;
    width: 300px;
    height: 50px;
    left: 0px;
    top: 20px;
}
#sessionCloseLi{
    visibility: hidden;
}
/*Reglas para dispositivos móviles no implementadas con bootstrap*/
@media screen and (max-width: 768px)
{
    .cards {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .cards .card {
        width: 100%;
    }
    .navbar-collapse{
        margin-top: 10px;
    }
    .carousel-inner{
        height: 60vh;
    }
    .col-md-4 nav{
        display: flex;
        justify-content: center;
    }
}
