body{
    margin: 0;
}
canvas{
    background-color: black;
}
#box{
    position: fixed;
    width: max-content;
    padding: 1%;
    background-color: maroon;
    color: white;
    font-size: 120%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.score{
    margin-left: 10px;
    display: inline;
}
#death{
    display: none;
    font-size: 150%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 20%;
    background-image: linear-gradient(to bottom, rgb(76, 76, 231), pink);
    border: solid;
}
#final{
    font-weight: 600;
    font-size: 300%;
    margin-top: 5%;
}
#but{
    font-size: 120%;
    background-color: aqua;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 1%;
    width: 50%;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
}
#but:hover{
    background-color: bisque;
}