body{
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    background-image: url("https://theblackboxlab.com/wp-content/uploads/2022/11/TBBL_Portada.png");
    background-repeat: no-repeat;
    background-size: cover;
    /* capa sobre el fondo para que se vea más oscuro */
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: multiply;
    /* fin capa sobre el fondo para que se vea más oscuro */
    background-position: center;
    background-attachment: fixed;

}

#container{
    width: 1200px;
    margin: auto;
    height: 100%;
    background: transparent;
    text-align: center;
}

h1{
    font-size: 3em;
    font-weight: 700;
    margin: 15px 0;
    padding: 0;
    text-align: center;
}

#container h1{
    color: #fff;
    font-size: 2em;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin-bottom: 0.5em;
}

#container p{
    color: #fff;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin-bottom: 0.5em;
}
#container p.msg-ia{
    margin: 0.5em;
    text-align: left;
    /* como si fuera un globo de chat */
    background-color: #fff;
    color: #086b99;
    padding: 0.5em;
    border-radius: 0.5em;
    font-weight: 500;
    /* fin como si fuera un globo de chat */
}
#container p.msg-usr{
    margin: 0.5em;
    text-align: right;
    /* como si fuera un globo de chat */
    background-color: #14232B;
    color: #fff;
    padding: 0.5em;
    border-radius: 0.5em;
    font-weight: 500;
    /* fin como si fuera un globo de chat */
}
#container p.error{
    color: #f00;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin-bottom: 0.5em;
}
#container p.escribiendo{
    color: #fff;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin-bottom: 0.5em;
    color: rgb(150, 150, 150);
    text-decoration: italic;
}

#container a{
    color: #fff;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin-bottom: 0.5em;
}

#chat-content{
    margin: 10px;
    width: 100%;
    height: 500px;
    background-color: #131719;
    border: 1px solid #fff;
}

#chat-input input{
    width: 90%;
    height: 50px;
    border: 1px solid #fff;
    background-color: #131719;
    color: #fff;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin-bottom: 0.5em;
    padding: 5px;
}
#chat-input button{
    width: 10%;
    height: 50px;
    border: 1px solid #fff;
    background-color: #131719;
    color: #fff;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin-bottom: 0.5em;
}
.chat-message-content {
    height: 500px;
    overflow: auto;
}

@media screen and (max-width: 1200px) {
    #container{
        width: 100%;
    }

    #chat-content{
        height: 60vh;
        width: 90%;
        margin: auto;
        margin-bottom: 10px;
        overflow: auto;
    }

    .chat-message-content{
        height: 60vh;
    }

    #chat-input input{
        width: 80%;
    }

    #chat-input button{
        width: 20%;
        min-width: 120px;
    }


}

@media screen and (max-width: 767px) {
    h1{
        font-size: 20px;
    }
    #container p{
        font-size: 14px;
    }
    #container p.msg-ia{
        font-size: 14px;
    }
    #container p.msg-usr{
        font-size: 14px;
    }
    #container p.error{
        font-size: 14px;
    }
    #container p.escribiendo{
        font-size: 14px;
    }
}
