@font-face
{
font-family: "Font1";
src: url("../fonts/Cc.ttf") format("truetype");
}

:root{
--var-anis: #b5d959;
--var-lavande: #a3bac9;
--var-border: #fefead;

}

*{
        box-sizing: border-box;
}

body{
    padding: 0%;
    margin: 0%;
    background-color: var(--var-lavande);
    font-family: "Font1";
}

main{
    position: absolute;
    top: 2vh;
    left: 2vw;
    width: 96vw;
    height: 96vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;

}

.logo{
    width: 75%;
    height: 15vh;
}

.menu{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 70%;
}

.menuImg{
    margin-top: 1vh;
    width: 96%;
    border: 2px solid var(--var-border);
}

.menuTitle{
    width: 100%;
    text-align: center;
    color: var(--var-border);
}



#board{
    display: flex;
    flex-wrap: wrap;
    width: 70vw;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px ridge pink;
    box-shadow: 0px 0px 2px var(--var-border);
}

.part{
    width: calc(100%/6);
    height: calc(100%/6);
    float: left;
    border: 1px solid var(--var-lavande);
}


#panel{
    display: flex;
    width: 25vw;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-left: 1vw;
}

#msg{
    display: none;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 65%;
    text-align: center;
    padding: 1vw;
}

#dep{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    text-align: justify;
}

#timer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    text-align: justify;
}

#score{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    text-align: justify;
}

header{
    width: 100%;
    height: 20%;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

footer{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 10vh;
    text-align: center;
    color: brown;
    font-size: 1vh;
}

.version{
    width: 18vw;
    font-size: 2vh;
}

.icone{
    width: 5vw;
}
