p {
    color: black;
    background-color: #ffffff;
}

h1 {

    border-color: rgb(40, 200, 100);
    border-style: solid;
    text-align: center;
}

li ~ li ~ li ~ li > em {
    background-color: brown;
}

h1+ul > li+li > em{
                background-color:cyan;
}

a[href^="./index.html"] {
    background-color: darkred;
}

a[href^="mailto"] {
    background-color: darkred;
}

a[href^="https"] {
    background-color: darkred;
}

a:hover {
    color: white;
    background-color: black;
    text-decoration: underline;
}

h1:hover{
    color:darkred;
    background-color: cadetblue;
    text-decoration:inherit;
}

h2:hover{
    color:darkred;
    background-color: cadetblue;
    text-decoration:inherit;
    padding-bottom: auto;
}

q::before {
    content: '"';
    color: darkorange;
    background-color: forestgreen;
}


q::after {
    content:'"' ;
    color: darkorange;
    background-color: forestgreen;
}

* {
    box-sizing: border-box;
}

main {
    width: 80%;
    min-width: 500px;
    max-width: 1000px;

}

#mainTitle{
    width: calc(80% - 20px);
} 

h1 {
    border-style: 2px red 4px yellow;
}

h2 {
    background: content-box radial-gradient(green,cadetblue);
    margin-bottom: auto;
}

h3 {
    background: content-box radial-gradient(green,cadetblue);
}

div {
    width: calc(100% - 20px);
    padding: 10px;
}

#bitmoji {
    border: 15px solid cadetblue;
    border-radius: 30px;
    box-shadow: 20px 10px 10px lightgreen;
    width: 400px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

IMG.onestla {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

IMG.starf {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.displayed {
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.onestla {
    clip-path: circle(50%);
}

.starf {
    clip-path: ellipse(130px 140px at 50% 50%);
}

#menu_nav {
    text-align: right;
    color: black;
    height: 5em;
}

#ul_menu_nav {
    height: 100%;
    border-top: solid green;
}

#ul_menu_nav .li_menu_nav {
    display: inline-block;
    height: 50%;
}

#ul_menu_nav a {
    text-decoration: none;
    font-weight: bold;
    font-family: sherif;
    font-size: 15pt;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 1em;
    display: block;
    height: 100%;
    padding: 0.8em 0.8em 1.7em 0.8em;
    text-align: left;
    font-variant: small-caps;
    background-color: darkseagreen;
}

#ul_menu_nav a:hover,
#ul_menu_nav > li:hover a {
    border-radius: 0;
}

#ul_menu_nav .a_menu_nav_a_propos,
#ul_menu_nav .a_menu_nav_a_propos:visited {
    background-color: deepskyblue;
}

.infobulle {
    display: none;
}

a:hover .infobulle {
    display: block;
    position: absolute;
    margin-top: 0.7em;
    margin-left: -11em;
    width: 10%;
    color: green;
    background-color: #F8F8A4;
    border-radius: 0.3em;
}

.ul_deroulant {
    display: none;
    list-style-type: none;
}

.ul_deroulant li {
    margin: 0;
    padding: 0.4em;
    background-color: darkseagreen;
}

.ul_deroulant li:first-child {
    border-top-right-radius: 0.5em;
}

.ul_deroulant li:last-child {
    border-bottom-right-radius: 1em;
    border-bottom-left-radius: 1em;
}

#ul_menu_nav .ul_deroulant li a {
    margin: 0;
    padding: 0.5em;
    border-radius: 0;
    font-size: 90%;
    color: green;
    display: block;
}

#ul_menu_nav .ul_deroulant li a:hover {
    background-color: darkseagreen;
    border: 1px solid darkseagreen;
    border-radius: 1em;
}

.li_menu_nav:hover .ul_deroulant {
    display: block;
    position: absolute;
    margin-left: -2.5em;
}

#ul_menu_nav:hover .li_menu_nav:not(:hover) {
    opacity: 0.3;<
}

h1 {
    font-family: myFirstfont;
}




#Hamza {
    float: left;
}



table {
    border-radius: 1em;
    background-color: white;
    margin-left: 10em;
    box-shadow: 0.2em 0.2em white;
    border-collapse: separate;
}

tbody tr th {
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}

caption {
    font-variant: small-caps;
    padding-top: 1.25em;
    caption-side: bottom;
    color: white;
}

thead tr th {
    background-color: indianred;
    padding: 0.3em;
    color: white;
}

thead tr th:last-child {
    border-top-right-radius: 1em;
    padding-left: 1.75em;
    padding-right: 1.75em;
}

thead tr th:first-child {
    border-top-left-radius: 1em;
    padding-left: 1.75em;
    padding-right: 1.75em;
}

thead tr th::first-letter {
    color: bisque;
}

tbody tr td:last-child::before {
    content: "✆ ";
    color: deepskyblue;
    font-size: 1.2em;
}

tbody tr td:nth-child(2) {
    font-style: italic;
}

tbody tr td {
    padding: 0.4em;
}

tbody tr td:first-child {
    font-weight: bold;
    padding-left: 1.5em;
}

tbody tr td:first-child::first-letter {
    color: crimson;
}

tbody tr td:nth-child(3) {
    padding-left: 1.5em;
}

tbody tr:nth-child(2n+1) {
    background-color: rosybrown;
}

tbody tr:nth-child(2n) {
    background-color: orange;
}

tbody tr:last-child td:first-child {
    border-bottom-left-radius: 1em;
}

tbody tr:last-child td:last-child {
    border-bottom-right-radius: 1em;
}

tbody tr:last-child {
    border-bottom-right-radius: 1em;
    border-bottom-left-radius: 1em;
}



#tColor {
    box-shadow: none;
    border-radius: 0;
    border-collapse: collapse;
    text-align: center;
    margin-left: 10em;
    width: 400px;
    height: 250px;
}

#tColor tbody tr:last-child td {
    border-radius: 0;
}

#tColor tbody tr td:last-child::before {
    content: "";
}

#tColor tbody tr td:first-child::first-letter {
    color: black;
}

#tColor tbody tr td:first-child {
    font-weight: unset;
}

#tColort tbody tr td:nth-child(3) {
    padding-left: 0;
}

#tColor tbody tr td {
    font-style: unset;
    padding: 0;
}

#tColor tbody tr td:first-child {
    padding-left: 0;
}

#tColor tbody #blue::first-letter {
    color: white;
}

#tColor tbody #blue {
    background-color: lightcoral;
    width: 300px;
    height: 50px;
    color: white;
}

#tColor tbody #red {
    background-color: limegreen;
    width: 100px;
    height: 200px;
}

#tColor tbody #orange {
    background-color: lightpink;
    width: 200px;
    height: 100px;
}

#tColor tbody #green {
    background-color: green;
    width: 100px;
    height: 50px;
}

#tColor tbody #yellow {
    background-color: yellow;
    width: 100px;
    height: 50px;
}

#tColor tbody #orange {
    background-color: orange;
    width: 100px;
    height: 100px;
}

#tColor tbody #gray {
    background-color: gray;
    width: 200px;
    height: 100px;
}

#tColor tbody #purple {
    background-color: purple;
    width: 100px;
    height: 50px;
}



video {
    margin-left: 10em;
    width: 50%;
    margin-top: auto;
}


#map {
    transform: scale(1, 1);
    position: absolute;
    margin-left: -1em;
    margin-top: -1em;
}

#vide {
    background-color: unset;
    padding-top: 60em;
}



form {
    background-color: silver;
    padding: 1em;
    border: 1px solid white;
    width: 22em;
    margin-left: 10em;
    margin-top: 1em;
}

fieldset {
    border: none;
    margin-left: -0.48em;
    margin-top: 1em;
}

input,
textarea {
    width: 21em;
    background-color: goldenrod;
    border-radius: 0.5em;
}

textarea {
    height: 5em;
}

#fieldset_large {
    background-color: aliceblue;
    border: 0.5px solid silver;
    border-radius: 1em;
}

button {
    position: relative;
    margin-left: 7.5em;
    margin-top: 1em;
    background-color: cornflowerblue;
    border-radius: 1em;
    color: white;
    padding: 0.5em;
}

label {
    display: block;
    font-family: arial;
    font-variant: small-caps;
    font-weight: bold;
}

label::first-letter {
    color: cornflowerblue;
}

.obligatoire::after {
    content: " (*)";
    color: lightgray;
}

#f4::before {
    content: "-";
    position: absolute;
    font-size: 2em;
    margin-left: -0.6em;
    color: black;
    margin-top: -0.25em;
}

#f4::after {
    content: "+";
    position: absolute;
    font-size: 2em;
    margin-left: 9.25em;
    color: black;
    margin-top: -0.15em;
}

#f4 {
    width: 18em;
    margin-left: 1.5em;
    color: black;
}

#cursorfont {
    background-color: lightgray;
    border-radius: 0.5em;
    width: 18em;
}


h1{font-family: myFirstfont;}
blockquote{font-size: 18px; margin-bottom: 2rem !important; line-height: 40px; letter-spacing: 2px;}
footer{margin-top: 4rem !important;}
a{color: cadetblue!important;}
a:hover{color: #FF0000 !important;}
img{max-width: 100%; padding:40px;}

  
