html,
body {
    min-width: 290px;
    color: white;
    background-color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.5
}

button {
    background-color: blue;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    min-width: 150px;
    min-height: 60px;
    font-size: large;
    font-weight: bold;
    border: none;
}

.separador {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 15px;
   }

button:hover {
   background-color: rgb(186, 186, 235);
   color: black;
   border-bottom: solid 3px darkblue;
   font-weight: bolder;
   
}

#faq {
    font-size: large;
}

h1 {
    font-size: 0.8em;
    font-weight: thin;
}

#navbar {
    position: fixed;
    min-width: 290px;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    border-right: solid;
    border-color: rgba(0, 22, 22, 0.4)
}
header {
    color: black;
    margin: 10px;
    text-align: center;
    font-size: 1.8em;
    font-weight: thin;
}
#main-doc header {
    text-align: left;
    margin: 0
}
#navbar ul {
    height: 88%;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden
}
#navbar li {
    color: #4d4e53;
    border-top: 1px solid;
    list-style: none;
    position: relative;
    width: 100%
}
#navbar a {
    display: block;
    padding: 10px 30px;
    color: #4d4e53;
    text-decoration: none;
    cursor: pointer
}
#main-doc {
    position: absolute;
    margin-left: 310px;
    padding: 20px;
    margin-bottom: 110px
}


section article {
    color: #4d4e53;
    margin: 15px;
    font-size: .96em
}
section li {
    margin: 15px 0 0 20px
}
code {
    display: block;
    text-align: left;
    white-space: pre-line;
    position: relative;
    word-break: normal;
    word-wrap: normal;
    line-height: 2;
    background-color: #f7f7f7;
    padding: 15px;
    margin: 10px;
    border-radius: 5px
}
@media only screen and (max-width:815px) {
    #navbar ul {
        border: 0;
        height: 207px}
    button {
            background-color: blue;
            color: white;
            border-radius: 15px;
            cursor: pointer;
            min-width: 150px;
            min-height: 60px;
            font-size: large;
            font-weight: bold;
            border: none;
        }
        
        button:hover {
           background-color: rgb(186, 186, 235);
           color: black;
           border-bottom: solid 3px darkblue;
           font-weight: bolder;
           
        }
        
    #navbar {
        background-color: white;
        position: absolute;
        top: 0;
        padding: 0;
        margin: 0, 0, 20, 0;
        width: 100%;
        max-height: 275px;
        border: 0;
        z-index: auto;
        border-bottom: 0
    }
    #main-doc {
        position: relative;
        margin-left: 0;
        margin-top: 350px
    }
}
@media only screen and (max-width:400px) {
    #main-doc {
        margin-left: -10px
    }
    code {
        margin-left: -20px;
        width: 100%;
        padding: 15px;
        padding-left: 10px;
        padding-right: 45px;
        min-width: 233px
    }
    button {
        background-color: blue;
        color: white;
        border-radius: 15px;
        cursor: pointer;
        min-width: 150px;
        min-height: 60px;
        font-size: large;
        font-weight: bold;
        border: none;
    }
    
    button:hover {
       background-color: rgb(186, 186, 235);
       color: black;
       border-bottom: solid 3px darkblue;
       font-weight: bolder;
       
    }
    
}