/* Custom clockify */
body {
    background-color: bisque;
    color: crimson;
}

a,
a:visited {
    color: crimson;
    text-decoration: underline;
}

.site-header {
    background-color: rgb(145, 38, 38);
}

.site-main {
    background-color: rgb(255, 0, 89);
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer {
    background-color: rgb(0, 255, 0);
}

.site-header,
.site-main,
.site-footer {
    padding: 1rem;
}



.main-navigation {
    background-color: chartreuse;
    width: auto;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

h1.site-title,
p.site-title {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
}

.site-title a {

    display: block;
    width: 200px;
    height: 50px;
    background: url(img/clockify-logo.svg) no-repeat center center;
    background-size: contain;
    text-indent: -5000px;
}

.main-navigation li {
    margin-left: 2rem;
}

.main-navigation li a {
    color: black;
}


.main-navigation ul ul {

    display: block;
}

.menu-toggle {
    width: 80px;
    height: 80px;
    background: url(img/Fichier1.svg) no-repeat center center;
    background-size: contain;
    border: 0;
    text-indent: -5000px;
    position: fixed;
    top: 0rem;
    right: 0rem;
    z-index: 2000;

}

.toggled .menu-toggle {
    background-image: url(img/Fichier2.svg);
}

section {
    min-height: 200px;
    background-color: aqua;
    padding: 2rem 0;
    margin: 0 0 2rem 0;
}

.toggled .menu-menu-1-container {
    background-color: gold;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.main-navigation.toggled li a {
    font-size: 1.5rem;
    display: inline-block;
    padding: 0.5rem 0;
}

.main-navigation.toggled ul ul {
    position: static;
    float: none;
    background-color: aqua;
    box-shadow: none;
}

.main-navigation.toggled ul ul li a {
    font-size: 1.2rem;
}