
.image_container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

.imagen_central {
    max-height: 280px;
}

.logo_izquierda {
    max-width: 200px;
    max-height: 200px;
}

.logo_derecha {
    max-width: 200px;
    max-height: 100px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 256px;
    background-color: #002828;
    border-bottom: 1px solid #01cc87;
    /* padding: 0.5px 0px 5.5px 0px; */
    /* text-align: center; */
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Consolas', 'Nirmala UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
    background-color: #000;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 270px;
}

.content-box {
    background-color: #002828;
    padding: 20px 20px 5px 20px; 
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 90%; 
    max-width: 1500px; 
    transition: top 0.3s ease;
    text-align: center; 
    margin-bottom: 5%;
}

.content-box-two { 
    color: #DBDBDB;
    background-color: #000;
    padding: 10px;
    border: 1px solid #777;
    overflow-y: auto;
    text-align: justify;
    /* height: calc(100% - 50vh); */
}


#assistant {
    height: 100%;
    width: 100%;
    margin: 10px 0 10px 0;
}

#ia_box {
    margin-top: 10px;
}

#videoController {
    height: 256px;
}

#text_box {
    padding-left: 10px;
    margin-top: 10px;
}

footer {
    text-align: center;
    position: fixed; 
    width: 100%;   
    bottom: 0; 
    font-size: 14px;
    background-color: #002828;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #01cc87;
}

footer p {
    color: #000;
}

footer p a {
    color: #DBDBDB;
    text-decoration: none;
}

@media only screen and (max-width: 800px) { 
    .logo_izquierda {
        display: none;
    }
    
    .image_container {
        display: block;
        position: relative;
        align-content: unset;
        width: 100%;
        height: 100%;
    }
    
    .imagen_central {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .logo_derecha {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 125px;
        max-width: 100%;
        max-height: 100%;
    }
    
    #videoController {
        width: 100%;
        height: 256px;
    }

    .content-box {
        width: 95%;
        margin-bottom: 20px;
        text-align: center;
    }

    .content-box-two {
        text-align: justify;
    } 

    footer {
        height: 2px;
    }

    #backButton {
        width: 19px;
    }
}




/* @media only screen and (max-width: 1090px) {
    #assistant {
        display: block;
    }
    #text_box {
        width: 95%;
        height: auto;
        padding: 10px;
        text-align: justify;
    }    
    #ia_box {
        height: auto;
    }
} */
