* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: center;
}

#navigation {
    border-radius: 15px;
    height: fit-content;
    display: inline-flex;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    align-items: center;
    padding: 0 10px;
    margin: 50px 0 0 0;
}

.bloc {
    margin-top: 80px;
}

.logo {
    display: flex;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.menu-content {
    display: flex;
    flex-direction: row;
}

.menu-content li {
    list-style: none;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    padding: 12px 16px;
    margin: 0 8px;
    position: relative;
    cursor: pointer;
    flex-wrap: wrap;
}

li a {
    text-decoration: none;
    color: white;
    transition: 0.5s all;
}

li a:hover {
    color: #df0135;
}

.intro {
    display: none;
}

@media screen and (max-width: 1151px) {
    .menu-content li {
        padding: 12px 10px;
        margin: 0px;
    }
}

@media screen and (max-width: 1011px) {
    .menu-content li {
        padding: 12px 5px;
        margin: 0px;
    }
}

h2 {
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 15px;
}

table {
    width: 100%;
    table-layout: fixed;
}

.tbl-header {
    background-color: rgba(0, 0, 0, 0.3);
}

.tbl-content {
    height: 300px;
    overflow-x: auto;
    margin-top: 0px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    color: #df0135;
    text-transform: uppercase;
}

td {
    padding: 15px;
    text-align: left;
    vertical-align: middle;
    font-weight: 300;
    font-size: 13px;
    color: #000;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);
body {
    font-family: "Roboto", sans-serif;
}

section {
    margin: 50px;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
}

.ajout {
    display: flex;
    justify-content: center;
    height: 90px;
}

.lien {
    color: #df0135;
}

.button {
    position: relative;
    padding: 1em 1.5em;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    font-size: 18px;
    margin: 1em 0.8em;
}

.epreuve {
    color: #df0135;
}

.epreuve::after,
.epreuve::before {
    content: '';
    display: block;
    position: absolute;
    width: 20%;
    height: 20%;
    border: 2px solid;
    transition: all 0.6s ease;
    border-radius: 2px;
}

.epreuve::after {
    bottom: 0;
    right: 0;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: #df0135;
    border-right-color: #df0135;
}

.epreuve::before {
    top: 0;
    left: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: #df0135;
    border-left-color: #df0135;
}

.epreuve:hover:after,
.epreuve:hover:before {
    width: 100%;
    height: 100%;
}

#container {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 5%;
}


/* formulaire*/

form {
    /*width:100%;*/
    padding: 30px;
    border: 1px solid #f1f1f1;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}


/* titre h1 dans un container */

#container h1 {
    width: 38%;
    margin: 0 auto;
    padding-bottom: 10px;
}


/* composant input text ou input mail ou input text ou input password */

input[type='text'],
input[type='mail'],
input[type='tel'],
input[type='password'],
textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

input[type='radio'] {
    margin: 8px 0;
}


/* composant input date heure ou select */

input[type='date'],
input[type='time'],
input[type='number'],
select {
    padding: 12px 2px;
    margin: 8px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
}


/* composant input checkbox */

input[type='checkbox'] {
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
}


/* label */

label {
    color: #df0135;
}

.radio-group {
    width: 100%;
    padding: 10px 0px;
    margin: 8px 0;
    box-sizing: border-box;
}


/* pour avoir un label et un champ sur la même ligne */

.form-group {
    width: 100%;
    box-sizing: border-box;
}


/* bouton de type submit */

input[type='submit'] {
    background-color: #df0135;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}


/* changement d'aspect si la souris passe sur un bouton de type submit */

input[type='submit']:hover {
    background-color: white;
    color: #df0135;
    border: 1px solid #df0135;
}