@font-face {
            font-family: "Receipt";
            src: url(../font/receipt.woff);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Receipt";
        }

        ::-webkit-scrollbar {
            display: none;
        }

        body {
            margin: 0;
            font-family: "Receipt";
            min-height: 100vh;
            overflow: hidden;
            background: #131313;
            color: rgb(130, 130, 130);
        }

        /* Text button */
        #audioToggle {
            position: fixed;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: rgb(130, 130, 130);
            font-size: 11px;
            letter-spacing: 0.15em;
            cursor: pointer;
            z-index: 100000000;
            opacity: 1;
            transition: opacity 1s;
        }

        #audioToggle.hidden {
            opacity: 0;
            pointer-events: none;
        }

        div.loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #171717;
            z-index: 99999999;
            transition: opacity 1s;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        div.loading.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .video-container {
            width: 80%;
            max-width: 1000px;
            /* aspect-ratio: 16/9; */
        }

        .video-container video {
            width: 80%;
            height: auto;
            object-fit: contain;
        }