* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow: hidden;
}

.webgl {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

.jitter {
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: jittery;
    z-index: -10;
}

.interface-wrapper {
    width: 100%;
    top: 64px;
    left: 64px;
}

.icon-control-container {
    height: 26.5px;
    width: 26.5px;
}

@media only screen and (max-width: 768px) {
    .interface-wrapper {
        width: 100%;
        top: 24px;
        left: 24px;
    }

    .icon-control-container {
        height: 19.5px;
        width: 19.5px;
    }
}

@keyframes jittery {
    10% {
        transform: translate(-0.1px, -0.15px) scale(1, 1);
    }

    20% {
        transform: translate(0.15px, 0.1px) scale(1, 1);
    }

    30% {
        transform: translate(-0.2px, -0.25px) scale(1, 1);
    }

    40% {
        transform: translate(0.05px, 0.1px) scale(1, 1);
    }

    50% {
        transform: translate(-0.025px, -0.05px) scale(1, 1);
    }

    60% {
        transform: translate(0px, 0.075px) scale(1, 1);
    }

    70% {
        transform: translate(-0.075px, -0.1px) scale(1, 1);
    }

    80% {
        transform: translate(0.075px, 0.125px) scale(1, 1);
    }

    90% {
        transform: translate(-0.125px, -0.075px) scale(1, 1);
    }

    100% {
        transform: translate(0.075px, 0.025px) scale(1, 1);
    }
}

h1,
h2,
h3,
h4,
h5,
p {
    /* font-family: ocr-a-std, monospace; */
    font-family: monospace;
    font-weight: 400;
    font-style: normal;
    color: white;
    /* mobile friendly font size */
    font-size: 16px;
}

/* if on mobile */
@media only screen and (max-width: 768px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    p {
        font-size: 10px;
    }
}

br {
    padding-top: 8px;
    padding-bottom: 8px;
    height: 16px;
}

.loading::after {
    display: inline-block;
    animation: dotty steps(1, end) 1s infinite;
    content: '';
}

@keyframes dotty {
    0% {
        content: '   ';
    }
    25% {
        content: '. ';
    }
    50% {
        content: '.. ';
    }
    75% {
        content: '...';
    }
    100% {
        content: '   ';
    }
}
.blinking-cursor {
    background-color: #fff;
    width: 0.8em;
    height: 0.15em;
    -webkit-animation: 0.65s blink step-end infinite;
    -moz-animation: 0.65s blink step-end infinite;
    -ms-animation: 0.65s blink step-end infinite;
    -o-animation: 0.65s blink step-end infinite;
    animation: 0.65s blink step-end infinite;
}

@keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-moz-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-webkit-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-ms-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-o-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

.bios-start-button {
    background-color: #000;
    border: 4px solid #fff;
    border-width: 4px 3px 4px 3px;
}

.bios-start-button p {
    box-sizing: border-box;
    padding: 8px;
}

.bios-start-button:hover p {
    background-color: #fff;
    cursor: pointer;
    color: #000;
}

.loading-screen-header {
    padding: 48px;
}

.loading-screen-body {
    padding-left: 48px;
    padding-right: 48px;
}

.loading-screen-footer {
    padding: 48px;
    padding-bottom: 64px;
}

.info-wrapper {
    top: 64px;
    left: 64px;
}

.spotify-card {
    --spotify-accent: #1ed760;
    width: 300px;
    margin-top: 4px;
    box-sizing: border-box;
    pointer-events: auto;
}

.spotify-card p {
    margin: 0;
}

.spotify-card__eyebrow {
    display: block;
    width: 100%;
    padding: 4px 8px;
    box-sizing: border-box;
    background: #000;
    font-size: 12px;
    letter-spacing: 0.2px;
}

.spotify-card__player {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    height: 54px;
    padding: 5px;
    box-sizing: border-box;
    background: #000;
    transition: background 250ms ease;
}

.spotify-card.is-playing .spotify-card__player {
    background: linear-gradient(
        100deg,
        #000 0%,
        #07150c 52%,
        color-mix(in srgb, var(--spotify-accent) 42%, #000) 100%
    );
}

.spotify-card__cover {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.spotify-card__details {
    flex: 1;
    min-width: 0;
    padding: 0 9px;
    overflow: hidden;
}

.spotify-card__marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.spotify-card__title {
    display: inline-block;
    min-width: 100%;
    font-size: 13px;
    font-weight: 700;
    animation: spotify-title-scroll 9s linear infinite;
}

.spotify-card__artist {
    overflow: hidden;
    color: #aaa;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.spotify-card__embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0.01;
    pointer-events: none;
}

.spotify-card__play {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    place-items: center;
    background: #fff;
    color: #000;
    font-family: monospace;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 120ms ease, color 120ms ease;
}

.spotify-card__play:hover,
.spotify-card__play:focus-visible,
.spotify-card__play[aria-pressed='true'] {
    background: var(--spotify-accent);
    color: #000;
    outline: none;
}

.spotify-card__play:disabled {
    cursor: wait;
    opacity: 0.55;
}

.spotify-card--idle {
    padding: 0;
    color: #aaa;
}

.spotify-card--idle > p:last-child {
    display: inline-block;
    padding: 4px 10px;
    background: #000;
}

.spotify-card__setup {
    color: #aaa !important;
    font-size: 12px;
}

@keyframes spotify-title-scroll {
    0%,
    15% {
        transform: translateX(0);
    }
    85%,
    100% {
        transform: translateX(-100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .spotify-card__title {
        overflow: hidden;
        animation: none;
        text-overflow: ellipsis;
    }
}

/* if on mobile make all loading screen elements have a padding of 16 */
@media only screen and (max-width: 768px) {
    .loading-screen-header {
        padding: 16px;
    }

    .info-wrapper {
        top: 16px;
        left: 16px;
    }

    .spotify-card {
        width: min(280px, calc(100vw - 32px));
    }

    .blinking-cursor {
        background-color: #fff;
        width: 0.4em;
        height: 0.08em;
        -webkit-animation: 0.65s blink step-end infinite;
        -moz-animation: 0.65s blink step-end infinite;
        -ms-animation: 0.65s blink step-end infinite;
        -o-animation: 0.65s blink step-end infinite;
        animation: 0.65s blink step-end infinite;
    }
    
    .loading-screen-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .loading-screen-footer {
        padding: 16px;
        padding-bottom: 32px;
    }
}


/*# sourceMappingURL=main.css.map*/