html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    width: 100vw;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

a {
    margin: -.5vh .5vw 0vh .5vw;
    padding: 1vw;
    text-decoration: none;
    font-size: 1.5rem;
    color: #fff;
}

li {
    list-style: none;
}

h1 {
    text-align: center;
    color: #336699;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 3rem;
}

h2 {
    margin-left: 8vw;
    color:#793862;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
}

h3 {
    margin-left: 8vw;
    color: #4f5b93;
    font-weight: bold;
    font-size: 1.7rem;
}

h4 {
    margin: 0;
    padding: 0;
    line-height: 2vh;
}

h5 {
    color: rgb(51, 130, 29);
}

h6 {
    font-size: 1.2rem;
    color: rgb(255, 145, 0);
}

p {

    color: #4f5b93;
    margin: 0vh 12vw;
    padding: 2vh;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: bolder;
}

.hello {
    margin-left: 30vw;
    font-size: 3rem;
}

.var {
    color: rgb(141, 1, 255);
}

.result {
    color: green;
}

.array {
    color: blue;
}

.dump {
    margin: 0vh 12vw;
    font-size: 1.2rem;
    font-weight: bold;

}

.border {
    padding: 1vw;
    border: 2px solid green;
    margin-bottom: 2vw;
    font-size: 1.2rem;
    font-weight: bold;
}

/* NAVBAR PERSO */

nav {

    width: 100vw;
    background-color: #7a86b8;
    height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 1em;
}

.nav-brand {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    display: flex;
    align-items: center;
}

.nav-brand img {
    margin-right: 35vw;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    padding-left: 0;
}

.nav-item {
    margin-left: 10px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
}

.nav-link.active {
    display: none;
    color: #fff;
    border-bottom: 2px solid #fff;
}

.visually-hidden {
    display: none;
}

/* FOOTER PERSO */

.footer {
    width: 100vw;
    position: absolute;
    position: fixed;
    display: block;
    bottom: 0px;
    background-color: #7a86b8;
    height: 70px;
}

.footer p {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 1em;
    color: #fff;
}

/* TABLEAU PERSO */

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.custom-table thead {
    background-color: #000;
    color: #fff;
}

.custom-table th,
.custom-table td {
    padding: 10px;
    border: 1px solid #000;
}

.custom-table tbody tr:hover {
    background-color: #ccc;
}

/* TRUE - FALSE */
.formule {
    color: #a92fbf;
    font-style: normal;
    font-size: 1rem;
}

.true {
    color: rgb(3, 161, 22);
    font-style: italic;
}

.false {
    color: rgb(255, 4, 4);
    font-style: italic;
}

.if {
    color: rgb(62, 87, 162);
}
.centrage{
    color: #a92fbf;
    width: 45vw;
    margin-left: 50%;
    transform: translateX(-50%);
}
.content{
    width: 60vw;
    margin-left: 50%;
    transform: translateX(-50%);

}
