html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background.gif');
    background-size: cover;
    background-position: center;
}
#score, #repairs {
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    top: 20px; 
    right: 20px; 
    font-size: 24px; 
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 20;
}
#repairs{
    top: 80px;
}
#keyboardDiv{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}
#keyboard{
    transition: 0.2s;
    transform: rotate(0deg);
}
#hand {
    position: absolute;
    top: 100%;
    left: 50%;
    display: none;
    transition: 0.25s; 
    z-index: 9;
}
#noMove{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
}
#black{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 50%;
    z-index: 9;
}
#repair{
    opacity: 0%;
    transition: 0.25s;
    z-index: 9;
}
#repair img{
    position: absolute;
    top: 30%;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
}