body, html {
    margin: 0;
}

canvas {
    display: block;
}

body {
    overflow: hidden;
    font-family: 'Poiret One', cursive;
    color: #ffffff;
}

.text {
    pointer-events: none;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20vw;
    font-size: 1.8rem;
    text-align: center;
}

footer {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5px 0;
}

#melody-play {
    z-index: 10;
    pointer-events: all;
    position: absolute;
    right: 10px;
    bottom: 10px;
    transform: rotate(180deg);
    opacity: .3;
    transition: opacity .5s;
    cursor: pointer;
}

#melody-play:hover {
    opacity: 1;
}

@media only screen and (max-width: 768px) {
    .text {
        padding: 0 5vw;
    }
}
