* {
    box-sizing: border-box
}

body {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    overflow: hidden;
    height: 100vh;
    margin: 0;
    padding: 0
}

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

#app canvas {
    outline: none
}

#audio-btn {
    align-items: center;
    color: #fff;
    background-color: #441f41;
    border: none;
    display: inline-flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%);
    padding: 8px;
    border-radius: 9999px;
    cursor: pointer;
    width: 240px;
    overflow: hidden;
    transition: background-color .35s
}

@media (min-width:800px) {
    #audio-btn {
        top: 70%
    }
}

#audio-btn svg {
    flex: 0 0 50px;
    transition: transform .35s;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

#audio-btn:hover {
    background-color: #562752
}

#audio-btn:hover svg {
    transform: scale(1.2)
}

#audio-btn:active svg {
    transform: scale(.9)
}

#audio-btn-label {
    --clip: 0;
    flex: 0 1 120px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    clip-path: polygon(calc(var(--clip)*100%) 0, 100% 0, 100% 100%, calc(var(--clip)*100%) 100%)
}

#audio-btn-loader {
    --scale: 0;
    position: absolute;
    display: block;
    background-color: #fbc40d;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center bottom;
    transform: scaleY(var(--scale))
}

.tp-dfwv {
    width: 350px !important
}

#credits {
    color: #fff;
    position: absolute;
    font-weight: 500;
    left: 0;
    line-height: 1.7;
    bottom: 30px;
    padding: 0 40px;
    width: min(100vw, 600px)
}

#credits a {
    color: #fbc40d
}
