* {
    padding: 0px;
    margin: 0px;
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    background-color: #fff;
    border: solid 3px #000;
    color: #000;
    padding: 0.4em 0.5em;
    text-decoration: none;
}

.skip-link:not(:focus):not(:active) {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.skip-link:focus {
    left: 0;
    position: absolute;
    top: 0;
    z-index: 999;
}


/* BARRE DE NAVIGATION ==========================================================================================*/
nav {
    position: relative;
    display: flex;
    padding: 10px;
    width: 100vw;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    font-size: 1.4em;
    z-index: 1;
}


.nav-items>ul>li {
    position: relative;
    display: inline;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
}

.nav-items>ul>li>a {
    color: white;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.nav-items>ul>li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: gold;
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-items>ul>li:hover::after {
    transform: scaleX(1);
}

.nav-logo img {
    width: 150px;
    height: 50px;
}

.navbar-scrolled {
    background-color: #623e2a;
    transition: background-color 0.5s ease;
}

/* INPUT + VALIDATION POUR FORMULAIRE ==========================================================================================*/
input+span {
    padding-right: 30px;
}

input:invalid+span::after {
    position: absolute;
    content: "✖";
    color: red;
    padding-left: 5px;
}

input:valid+span::after {
    position: absolute;
    content: "✓";
    color: green;
    padding-left: 5px;
}

.Commentaire-Form input[type=submit] {
    font-family: 'Tilt Neon', cursive;
    font-size: 1.125rem;
    font-weight: 500;
    width: 100%;
    border: 0;
    border-radius: 20px;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    transition: color 0.5s ease;
}

.Commentaire-Form input[type=submit]:hover {
    background-color: #91713c;
    color: #ffffff;
}