html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-image: url('assets/images/windowbg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

main {
    min-height: 100%;
}

canvas {
    padding: 0;
    display: block;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/*Hier zijn styles voor een div waarin canvas en html-elementen worden geplaatst die met javascript gemaakt worden.*/
#canvas-wrap {
    padding: 0;
    margin: auto;
    width: 800px;
    height: 1400px;
    /*Hier wordt een rand voor de canvas gemaakt.*/
    border: 10px;
    border-radius: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
button {
    margin: auto;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
    border-color: white;
    border-style: solid;
    border-width: thin;
    cursor: pointer;
    font-family: 'MedievalSharp', cursive;
    right: 0;
    top: 700px;
    bottom: 0;
}
/*Hier staan styles die aan alle knoppen toegepast moeten worden.*/
.levelbutton {
    display: inline-block;
    margin-right: 100px;
    font-size: 120px;
    border-radius: 20px;
    left: 75px;
    height: 150px;
    width: 150px;
}

/*...en daarna het veld zelf.*/
input {
    padding: 5px;
    display: inline-block;
    margin: auto;
    margin-bottom: 100px;
    position: relative;
    display: block;
    width: auto;
    border: 2px solid;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0);
    top: 750px;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    justify-content: center;
    font-size: 50px;
}
.startbutton{
    padding: 5px;
    display: block;
    border-radius: 5px;
    font-size: 64px;
}
.result{  
    padding: 5px;
    display: inline-block;
    border-radius: 5px;
    font-size: 50px;
    left: 100px;
}
/*Dit is voor de lijst met scores*/
ol {
    width: 600px;
    height: 500px;
    border: 5px solid white;
    border-radius: 20px;
    overflow: auto;
    margin: auto;
    position: relative;
    top: 600px;
    left: 0;
}

/*Dit is voor wat binnen de lijst staat*/
li {
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 25px;
    font-family: 'MedievalSharp', cursive;
    font-size: 48px;
}

