/* Titre Marchadier */

.title {
    position: absolute;
    left: 2%;
    top: 2%;
    width: 40%;
    transition: transform .2s;
    z-index: 3;
    text-align: left;
}

.title a {
    color: #0D3B66;
    font-size: 500%;
    font-family: 'Tangerine', cursive;
    text-decoration: none;
}

/* The navigation bar */

.topnav {
    width: 100%;
    min-height: 10vh;
}

.list ul {
    list-style: none;
    text-align: right;
    justify-content: center;
}

.list ul li {
    display: inline-block;
}

.list ul li a {
    position: relative;
    display: block;
    padding: 5px;
    text-decoration: none;
    color: #EE964B;
    text-transform: none;
    margin: 0 10px;
    font-size: 150%;
    font-family: 'Kurale', serif;
    transition: transform 2s;
}

.list ul li a,
.list ul li a:after,
.list ul li a:before {
    transition: all .5s;
}

.list ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #EE964B;
    height: 2px;
}

.list ul li a:hover:after {
    width: 50%;
}

.dropdown, #my_checkbox
{
    display: none;
    position: absolute;
    color: #EE964B;
    text-transform: none;
    font-size: 150%;
    transition: transform 2s;
    font-family: 'Kurale', serif;
    right: 2%;
    z-index: 4;

}