* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;

    height: 100%;
    width: 100%;

    font-family: 'Work Sans', sans-serif;
    color: white;
}

@media screen and (pointer: coarse) {

    html,
    body {
        overflow-x: hidden;
    }
}

button {
    background-color: transparent;
    outline: none;
    border: none;

    cursor: pointer;
}



.container {
    min-height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 0 2rem;

    background-color: black;
}

.title {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title h1 {
    font-size: 32pt;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    margin-right: -1.2em;

    letter-spacing: 25px;
}

.title .hint {
    color: rgba(255, 255, 255, 0.4);

}

.canvasWrapper {

    width: 100%;
    max-width: 650px;
    height: auto;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
}

#canvas {
    height: auto;
    width: 100%;
    aspect-ratio: 1 / 1;

    box-shadow: -1px 1px 400px -13px rgba(0, 255, 255, 0.15);
    -webkit-box-shadow: -1px 1px 400px -13px rgba(0, 255, 255, 0.10);
    -moz-box-shadow: -1px 1px 400px -13px rgba(0, 255, 255, 0.05);

    border-radius: 1rem;
}

.controlsWrapper {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.controlsWrapper .playback {
    display: flex;
    flex-direction: row;
    justify-content: center;

    width: 30%;
}

.controlsWrapper .playback button {
    margin: 1rem;

    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 0.5rem;

    transition: all 0.1s ease-in-out;

    display: flex;
    align-items: center;
    justify-content: center;


}

.controlsWrapper .playback button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.footer {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.footer a {
    color: currentColor;
    transition: all 0.1s ease;
}

.footer a:hover {
    color: white;
}
