
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/


body {
    background-color: rgb(19, 0, 0);
}


/*-------------------------------------*/
/*----------Estilos para logo----------*/
/*-------------------------------------*/

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(19, 0, 0);
}

.logo img {
    width: 50vw;
    justify-content: center;
    align-items: center;
    justify-items: center;
}


/*-------------------------------------*/
/*------Estilos para la solapa-------*/
/*-------------------------------------*/

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: -90em;
    top: -15em;
    width: 100em;
    height: 200em;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #f8b6b6;
    margin: 10% auto;
    padding: 10px;
    border: 1px solid #888;
    width: 60vw;
    height: 63vh;
    max-width: 600px;
    border-radius: 5px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: black;
    text-align: center;
}

h2{
    padding-bottom: 25px;
    text-decoration: underline;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-align: end;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/*-------------------------------------*/
/*------Estilos para disciplinas-------*/
/*-------------------------------------*/

.disciplinas {
    color: #fff;
    background: linear-gradient(180deg,
            rgb(19, 0, 0)0%,
            rgba(245, 2, 2, 0.904)35%);
}

.disciplinas h3 {
    padding-bottom: 1em;
    font-size: 3em;
    text-align: center;
    font-family: 'rubik dirt',cursive;
}


.actividad {
    display: flex;

    justify-content: space-around;
    align-items: center;

    border-top: solid 2px #fff;

    background: linear-gradient(180deg,
            rgba(85, 10, 10, 0.932)0%,
            rgba(0, 0, 0, 1)70%);
}

.actividad1 {
    display: flex;

    justify-content: space-around;
    align-items: center;

    flex-wrap: wrap;
    flex-direction: row-reverse;

    border-top: solid 2px #fff;

    background: linear-gradient(180deg,
            rgba(0, 0, 0, 1)0%,
            rgb(77, 11, 11)100%);
}

h5 {
    font-size: 2em;
    font-family: 'rubik dirt', cursive;
}

.texto,
.col-md-4 {
    display: flex;
    justify-content: center;
    padding-top: 1em;
}

.imagen {
    display: flex;
    justify-content: center;
}

.carousel {
    width: 60%;
    padding: 2em;
}



/*-------------------------------------*/
/*---------Estilos para footer---------*/
/*-------------------------------------*/

.footer{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    border-top: solid 2px #fff ;
    padding: 1em;

    background-color: rgb(85, 10, 10);
}

#diseño{
    display: flex;
    flex-direction: column;
}

#diseño a{
    font-size: 1em;
    color: #fff;
}

#redes{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#redes a{
    color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 1.4em;
    gap: .4em;
}



/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/


@media (max-width:700px) {
    .logo img {
        width: 90vw;
    }

/*-------------------------------------------------------------------*/
    .modal {
        left: -50em;
        top: -15em;
        width: 80em;
        height: 120em;
    }

    .modal-content {
        font-size: 13px;
        width: 25em;
        height: 28em;
    }

    h2{
        padding-bottom: 10px;
        font-size: 15px;
    }

    /*-------------------------------------------------------------------*/

    .disciplinas h3 {
        font-size: 1.7em;
    }

    /*-------------------------------------------------------------------*/

    h5 {
        font-size: 1.3em;
    }

    .texto,
    .col-md-4 {
        justify-content: left;
    }

    .carousel {
        width: 80%;
        padding: 1em;
    }

    /*-------------------------------------------------------------------*/

    .footer a {
        font-size: 0;
    }

    #diseño a {
        font-size: .7em;
        color: #fff;
    }

    #redes{
        font-size: 0;
        flex-direction: row;
    }

}