.mouve {
    color: white;
    transition: transform 450ms;
}
.mouve:hover {

    transform: scale(1.15);

}


.form__group input {
    border: 2px solid #fff;
    border-radius: 100rem;
    color: #6300a0;
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    outline: none;
    padding: 0.5rem 1.5rem;
    width: 100%;
  }
  .form__group input:focus {
    border: 2px solid #6300a0;
  }
  .form__group input:invalid {
    background: #b20a37;
    border: 2px solid #b20a37;
    color: #fff;
  }


/* NOUVEAU CSS RANGER */
@media (max-width: 599px) {
    .body {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

}

 /*THEME BODY */
 body.sombre-theme {
    background-color: black;
    color: white;
}
body.clair-theme {
    background-color: white;
    color: black;
}

body {
    flex-direction: column;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}
header {
    grid-column: 1 / span 2;
}
 /* ENSEMBLE DE LA PAGE */
 h2 {
    text-align: center;
    font-size: 1.9em;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: white;
    }
    a:hover {
    text-decoration: underline;
}

table {
    border-collapse: collapse;
}
th, td {
    border: 1px solid;
    padding: 5px;
}
fieldset {
    border: 2px solid;
    margin-bottom: 10px;
}
.liste {
    position: none ;
    display: grid;
}

/* NAVIGATION */
.navbar {
    border-bottom: 1px solid;
    padding: 10px;
  }
  .navbar .banniere {
    display: flex;
    justify-content: center;
  }
  .navbar h1 {
    font-weight: bold;
    text-align: center;
    text-shadow: purple 5px 2px 5px;
    }

    /* Menu */
    .menu {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        z-index: 1000;
        width: 100%;
        text-align: center;
        font-weight: bold;
    }
    
    .menu li {
        margin-right: 20px;
        position: relative;
    }
    
    .menu a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        display: block;
        padding: 10px;
    }
    
    .menu-deroulant .sous-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
    }
    
    .menu-deroulant:hover .sous-menu {
        display: block;
    }
    
    .sous-menu li {
        margin: 0;
        list-style-type: none;
    }
    
    .sous-menu a {
        padding: 10px;
        border: 1px solid;
        text-decoration: none;
        background-color: black;
    }
    
    .menu a:hover {
        text-decoration: underline;
    }
    .content {
        margin-top: 50px;
    }
    .content p {
        margin: 20px;
    }

    /* BOUTON THEME COULEUR PAGE */
    #boutontheme {
        background: linear-gradient(90deg, #8360c3, #2ebf91);
        border: solid;
        border-color: #006666;
        border-radius: 5px;
}


 /* ASIDE */
aside {
    width: 150px;
    text-align: center;
    padding: 20px;
    border: 1px solid;
    position: sticky;
    top: 60px;
    left: 0;
    overflow-y: auto;
    height: 50vh;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* PAGE MAIN */
main {
    flex: 1;
    padding: 10px;
    margin-left: 10px;
    grid-column: 2;
}

 /* SECTION */
section {
    padding: 20px;
    border: 1px solid;
}
.section1 {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
}
.section2 {
    grid-column: 2/4;
    grid-row: 3;
}

 /* PIED DE PAGE */
footer {
    padding: 1px;
    text-align: center;
    position: sticky;
    border-top : 1px solid;
    grid-column: 1 / span 2;
}