body{
    --font-color:rgb(73, 59, 59);
    background-color: #eaeeef;
    font-size:1.5vh;
    color: var(--font-color);
}
.character {
    font-size: 2vh;
}
header{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}
#menu{
    justify-self: start;
    width: 10vh;
    height: 10vh;
}
#menu img {
    width: 10vh;
    height: 10vh;
}
header h1{
    font-size: 3vh;
    justify-self: center;
}
header a{
    justify-self: end;
}
section{
    display: flex;
    justify-content: center;
    align-items: center;
}
.svg{
    color: var(--font-color);
    width: 4vh;
    height: 4vh;
}
.attribute{
    width : 10vw;
    color: var(--font-color);
    margin-left:0.5vw;
}
.element{
    align-items:center;
    height: 5vh;
}
table{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align: center;
    width : 100%;
}
#page_buttons_container{
    margin: 5vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.page_button{
    padding:2vw;
    border-radius: 10px;
    background-color: #c6c8c9;
}
.page_button:hover{
    background-color: rgba(158,149,149,0.50);
}
.number{
    border-radius: 10px;
}
#number1{
    background-color: rgb(225, 171, 228);
}
#number2{
    background-color: rgb(185, 185, 255);
}
#number3{
    background-color: rgb(219, 248, 194);
}
#number4{
    background-color: rgb(255, 226, 243);
}
#number6{
    background-color: rgb(207, 200, 167);
}
#number7{
    background-color: rgb(191, 235, 255);
}
#number8{
    background-color: rgb(255, 191, 191);
}
#number9{
    background-color: rgb(255, 222, 190);
}
.shortcutPath{
    display: flex;
    justify-content: center;
}
.shortcutPathTable{
    display: contents;
    width: 100%;
}
.pathDescriptor{
    font-size: 0.75vh;
    text-align:  center;
    padding: 0.5vh;
}
.playsound{
    text-align: center;
    font-size: 0.75vh;
    height: 2vh;
    width:5vh;
}
@media screen and (min-width: 500px) {
    body{
        font-size:1.5vw;
    }
    .character {
        font-size: 2vw;
    }
    #menu{
        justify-self: start;
        width: 10vw;
        height: 10vw;
    }
    #menu img {
        width: 10vw;
        height: 10vw;
    }
    header h1{
        font-size: 3vw;
        justify-self: center;
    }
    header a{
        justify-self: end;
    }
    .playsound{
        font-size: 0.75vw;
        height: 2vw;
        width:5vw;
    }
    #page_buttons_container{
        margin: 5vh;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    .page_button{
        padding:2vh;
    }
}