#keyboard{
    width: 90vh;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    margin: 0;
    padding: 0;
}

*{
    
    -moz-user-select: none;
    user-select: none;
}

body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#keyboard li{
    height: calc(25vh/3 - 6px);
    width: calc(25vh/3 - 6px);
    margin-top: 5px;
    margin-right: 5px;
    background-color: rgb(255, 255, 255);
    float: left;
    border-radius: 10%;
    text-align: center;
    line-height: calc(25vh/3 - 6px);
    cursor: pointer;
}

#keyboard li:hover{
    background-color: rgb(241, 241, 241);
}

.lastkey{
    margin-right: 0;
}

#keyboard-container{
    position: absolute;
    bottom: 0;
    width: 100vw;
    background-color: rgb(218, 218, 218);
    height: 100vh;
    max-height: calc(100vh/3);
}

#content{
    position: absolute;
    left: 20%;
    width: 30%;
    top: 27.5vh;
    font-size: 2vw;
}

#score{
    position: absolute;
    top: 30vh;
    left: 50%;
    font-size: 2vw;
    padding: 0 5px;
    background-color: rgb(61, 107, 107);
    color: white;
    display: none;
}
#pokusy{
    position: absolute;
    top: 60vh;
    left: .5vw;
    font-size: 2vw;
    padding: 0 5px;
    color: rgb(133, 133, 133);
}

#pokusy::before{
    content: "Počet pokusů: ";
}
#dalsislovo{
    background-color: rgb(61, 107, 107);
    color: white;
    font-size: 2vw;
    position: absolute;
    top: 40vh;
    padding: 1vh;
    border-radius: 1vh;
    left: 20%;
    cursor: pointer;
    visibility: hidden;
}
#dalsislovo:hover{
    background-color: rgb(48, 87, 87);
}
#dokoncit{
    font-size: 1.5vw;
    position: absolute;
    left: 20%;
    top: 20vh;
    color: rgb(61, 107, 107);
    visibility: hidden;
}
#vyhraljste{
    font-size: 2vw;
    position: absolute;
    left: 20%;
    top: 15vh;
    color: rgb(61, 107, 107);
}
#hratznovu{
    background-color: rgb(61, 107, 107);
    color: white;
    font-size: 2vw;
    position: absolute;
    top: 40vh;
    padding: 1vh;
    border-radius: 1vh;
    left: 20%;
    cursor: pointer;
}
#hratznovu:hover{
    background-color: rgb(48, 87, 87);
}
#vyhra{
    visibility: hidden;
}

.temata{
    position: absolute;
}
.tema{
    padding: 10px;
    font-size: 1.5vh;
    color: rgb(61, 107, 107);
    cursor: pointer;
    width: 15vh;
}
.tema:hover{
    background-color: rgb(240, 240, 240);
}
.selected{
    background-color: rgb(61, 107, 107);
    color: white;
}
.selected:hover{
    background-color: rgb(61, 107, 107);
}

#hora{
    position: absolute;
    height: 66vh;
    top: 0;
    left: 50vw;
    z-index: 0;
}

#p{
    z-index: 1;
    position: absolute;
    height: 8vh;
    left: calc(50vw + 0vh);
    top: 55vh;
}