*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    border: 2px solid black;
    background-color: gray;
}
header{
    position: sticky;
    top: 0;
    background-color: lightgray;
    height: 100px;
    width: 100%;
    font-size: 90px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px black;
}
#ovningslista{
    list-style: none;
    margin-top: 20px;
    width: 50vw;
    margin: auto;
    padding: 0;
}
#ovningslista li a{
    text-decoration: none;
    color: black;
    margin: 5px;
    width: 100%;
    height: 10vh;
    justify-content: center;
    align-items: center;
    display: flex;
}
.gold{
    background-color: gold !important;
}
.gold:hover{
    background-color: goldenrod !important;
}
@media only screen and (max-width: 1000px){
    header{
        font-size: 50px;
        height: 150px;
    }
    
}

canvas {
    border: 2px solid black;
    position: absolute;
    left: 6px;
    top: 8px;
    z-index: -1;
    cursor: pointer;
}