/*Roots*/

:root {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    ;
    --text-body: #070707;
    --text-primary: #1f1f1f;
    --text-secondary: #000000;
    --bg-body: #f5f5f5;
    --bg-primary: #f7f2f2;
    --bg-secondary: #e4e4e4;
    --bg-bar: #2a2a38;
    --thumb: #646780;
    --bg-footer: #dfdfdf;
    --bg-footer-2: #bbbbbb;
    --bg-header: #e7e5e5;
}

body {
    color: var(--text-body);
    background-color: var(--bg-body);
    margin: 0;
    padding: 0;
}

header {
    padding: 0;
    padding-bottom: 0;
    align-content: center;
}

.img-banner {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

.container-fluid h1 {
    color: #5E412F;
}

.container-fluid p {
    color: #5E412F;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
}

.texto {
    display: flex;
    flex-direction: row;
    padding: 1rem;
}

.texto1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.texto1 h1 {
    display: flex;
    padding-bottom: 1rem;
}

.texto1 p {
    display: flex;
    padding-left: 6rem;
    padding-right: 6rem;
}

.texto2 {
    display: flex;
}

.texto h1 {
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
}

.texto p {
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
}

.texto img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

.container-fluid {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.content {
    padding: 0;
    display: flex;
}

.interactive {
    display: flex;
    flex-direction: column;
}

.canvas-principal {
    padding: 1rem;
}

.canvas {
    border: 0.1px solid #5E412F;
}

#controls {
    bottom: 20px;
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

#controls button {
    width: 32%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0.5rem;
}


/* Barra de Scroll */

body::-webkit-scrollbar {
    width: 0.45rem;
}

body::-webkit-scrollbar-track {
    background: var(--bg-bar);
}

body::-webkit-scrollbar-thumb {
    background: var(--thumb);
    border-radius: 4px;
}


/* Pantallas Pequeñas */

@media only screen and (max-width: 600px) {
    .texto {
        flex-direction: column;
    }
    .texto1 p {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media only screen and (max-width: 800px) {
    .texto {
        margin: 0;
        padding: 0;
    }
    .texto1 p {
        padding-left: auto;
        padding-right: auto;
        font-size: 18;
    }
    .texto1 h1 {
        font-size: 25;
    }
    .texto2 img {
        height: auto;
        max-width: 100%;
    }
}

@media only screen and (max-width: 1000px) {
    .texto1 p {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}