* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: 'Russo One', sans-serif;
}

html, body {
    height: 100%;
}

 button:hover {
     cursor: pointer;
     cursor: hand;
     background-color: yellow;
     color: black;
 }

button {
    border: dotted white 2px;
    display: inline-block;
    background-color: purple;
    color: white;
    padding: 10px;
}

#music {
    position: absolute;
    left: 30px;
    top: 50px;
    height: 70px;
    width: 70px;
}

#top, #right, #bottom, #left, #pause-button, #quit-button, #start-button, #controls-button, #back-button, #no-button, #yes-button {
    position: absolute;
}

#pause-button, #quit-button, #start-button, #controls-button, #back-button, #no-button, #yes-button {
    font-size: 30px;
}

#top, #right, #bottom, #left {
    height: 50px;
    width: 50px;
    font-weight: 1000;
    font-size: 16px;
}

#top {
    bottom: 200px;
    left: 90px;
}

#right {
    bottom: 140px;
    left: 150px;
}

#bottom {
    bottom: 80px;
    left: 90px;
}

#left {
    bottom: 140px;
    left: 30px;
}

#pause-button {
    top: 5%;
    right: 5%;
}

#quit-button {
    right: 5%;
    top: 15%;
}

#yes-button, #no-button {
    left: 40%;
}

#yes-button {
    top: 50%;
}

#no-button {
    top: 60%;
}

#canvas-container {
    height: calc(100% - 60px);
    border: dotted white 2px;
}

#blockhead {
    height: 100%;
    width: 100%;
}

#back-button {
    left: 40%;
    bottom: 20%;
}

#start-button {
    left: 40%;
    top: 50%;
}

#controls-button {
    left: 40%;
    top: 70%;
}

#footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

footer p {
    font-size: 20px;
}

footer a {
    color: white;
    padding: 5px;
}

#copyright-mobile {
    display: none;
}

a, button {
    border-radius: 5px;
}

a:hover {
    cursor: hand;
    color: black;
    background-color: yellow;
}

#logo img {
    height: 30px;
    width: 30px;
}

#logo:hover {
    background-color: yellow;
}

@media screen and (max-width: 900px) {
    #copyright-mobile {
        display: block;
    }

    #copyright-desktop {
        display: none;
    }

    button {
        padding: 5px;
    }

    #music {
        left: 15px;
        top: 25px;
        padding: 5px;
        height: 50px;
        width: 50px;
    }

    #pause-button, #quit-button, #start-button, #controls-button, #back-button, #no-button, #yes-button {
        font-size: 15px;
    }

    #top, #right, #bottom, #left {
        height: 30px;
        width: 30px;
        font-size: 14px;
        line-height: 6px;
    }

    #top {
        bottom: 160px;
        left: 45px;
    }

    #right {
        bottom: 120px;
        left: 80px;
    }

    #bottom {
        bottom: 80px;
        left: 45px;
    }

    #left {
        bottom: 120px;
        left: 10px;
    }
}