* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    font-family: sans-serif;
    font-size: 14px;
    touch-action: none
}

#top-arrow {
    margin-top: 20px;
    margin-bottom: -30px;
    margin-left: -30px;
}

#turn-phone {
    margin-top: 30px;
}

#bottom-arrow {
    margin-left: 120px;
}

#move-buttons {
    position: absolute;
    top: 30%;
    left: 0;
    margin-left: 10px;
    width: 50px;
}

#moveUp {
    margin-bottom: 60px;
    margin-top: 30px;
    cursor: pointer;
}


#moveDown {
    margin-top: 0px;
    cursor: pointer;
}

#shoot-button-div {
    position: absolute;
    top: 60%;
    right: 0;
    margin-right: 20px;
    width: 50px;
}

#canvas1 {
    border: 5px solid red;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #4d79bc;
    max-width: 100%;
    max-height: 100%;
    font-family: 'Bangers', cursive;
}

#layer1,
#layer2,
#layer3,
#layer4,
#player,
#angler1,
#angler2,
#lucky,
#projectile,
#gears,
#hivewhale,
#drone,
#smokeExplosion,
#fireExplosion,
#bulbwhale,
#moonfish,
#shield,
#fireball,
#stalker,
#razorfin {
    display: none;
}

img {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.no-select {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}