@font-face {
    font-family: "AMI EGA 8x8";
    src: url("assets/Web437_AMI_EGA_8x8.woff") format("woff");
}

@keyframes background-scroll {
    from { background-position: 0px 0x; }
    to { background-position: 320px 320px; }
}

body {
    width: 100vw;
    height: 100svh;
    background-image: url("assets/background.png");
    background-color: black;
    margin: 0px;
    animation-name: background-scroll;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
img.logo {
    width: 80vw;
    max-height: 50vh;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vh;
}


#spacer {
    height: 35em;
}
.ui {
    height: 100svh;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
}
.flex-spacer {
    flex-grow: 1;
}
.strip {
    display: flex;
    justify-content: center;
    align-items: center;
}
.button {
    width: min(20vw, 132px);
    height: min(20vw, 132px);
    border: none;
    background-color: transparent;
    background-image: url("assets/button-bg.png");
    background-size: contain;
}
.button img {
    width: 100%;
    height: 100%;
}
.button-play img {
    padding-left: 7%;
    margin-top: -4%;
}
.button-pause img {
    padding-left: 7%;
    margin-top: -4%;
}
.button:active img {
    margin-left: 5px;
    margin-top: 5px;
}
.logo-container {
    height: 430px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
#play-button {
    margin-left: auto;
    margin-right: auto;
}
#term-console {
    width: 80vw;
    height: 90vh;
    background-color: rgba(20, 20, 20, 0.9);
    font-family: "AMI EGA 8x8", monospace;
    position: absolute;
    top: 0px;
    left: 10vw;
    color: rgb(200, 200, 200);
    font-weight: bold;
    font-size: 14pt;
    padding: 10px 20px 10px 20px;
    line-height: 24px;
    white-space: pre;
}
#now-playing {
    font-family: monospace;
    font-size: 14pt;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
    color: #cacaca;
    background-color: #111111b2;
    padding: 5px 5px 5px 5px;
}
.now-playing-container {
    min-height: 100px;
}

