*{
    margin: 0;
    border: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

html ,html body{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: gray;
    overflow: hidden;
}

.showlevel {
    position: absolute;
    width: 100vw;
    top: 10vh;
    color: white;
    text-align: center;
    font-size: 2rem;
    z-index: 50;
}

.container {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container canvas {
    position: relative;
}

.container .circle{
    position: absolute;
    width: 100px;
    height: 100px;
    translate: 0 -70px;
    border-radius: 100%;
    display: grid;
    font-size: 30px;
    place-content: center;
    color: black;
    background-color: rgba(179, 176, 2, 0.226);
}

#chooselevel {
    text-align: center;
    background-color: gray;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#chooselevel h1{
    margin: 20px;
    font-size: 1.4rem;
}

#chooselevel .title{
    color: yellow;
    font-size: 3rem;
}

#selectBar {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-evenly;
    align-content: start;
    row-gap: 40px;
    width: 50vw;
    min-height: 100vh;
    padding-top: 3vh;
    background-color: rgb(105, 104, 104);
    border-radius: 5px;
}

#selectBar button {
    height: 60px;
    width: 10vw;
    border-radius: 30px;
    background-color: pink;
    font-size: 3rem;
    text-align: center;
}

#levelnavigation {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    background-color: rgba(112, 82, 0, 0.85);
    text-align: center;
    font-size: 1.4rem;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#levelnavigation button {
    height: 100px;
    width: 100px;
    border-radius: 100px;
    font-size: 2rem;
    color: white;
    background-color: gray;
}

#levelnavigation button:hover{
    background-color: rgb(155, 154, 154);
}

#levelnavigation button:active{
    background-color: rgb(116, 114, 114);
}

#levelnavigation .button {
    margin-top: 50px;
}

.button img {
    height: 50%;
    width: 50%;
}

#levelnavigation p {
    margin: 5px;
    font-size: 3rem;
}

.button {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

#levelnavigation p{
    color: yellow;
}
