.navbar {
    overflow: hidden;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: space-between;   
}

.logo {
    color: white;
    font-size: 1.5em;
}

.linkQuizz {
	background:none!important;
    border:none; 
    padding:0!important;
    text-decoration: none;
    cursor: default;
    /*z-index:60;
    font-family: "Times New Roman", Times, serif;*/
    color: white;
    font-size: 1.5em;
    /*font-weight: bold;
    font-size: 32px;
    color:black;*/
}

.bar {
    background-color: white;
    height: 3px;
    width: 25px;
    margin: 5px 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu {
    display: flex;
    flex-direction:row-reverse;
    text-align: center;
    margin: 0;
}

.menu a {
    padding: 15px;
    text-decoration: none;
    color: white;
}

.menu a:hover {
    background-color: #555;
}

@media screen and (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        text-align: right;
        width: 50%;
    }

    .menu a {
        width: 50%;
        box-sizing: border-box;
    }

    .menu-toggle {
        display: flex;
    }
}
