@font-face {
    font-family: "Timtype-German";
    src: url("/fonts/Timtype-German.woff2") format("woff2");
}

:root {
    --qq-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
}

body {
    font-family: "Timtype-German", "Courier New", Courier, monospace;
    letter-spacing: 0.1em;
    color: white;
    margin: 0px;
    min-height: 100vh;
    background: linear-gradient(
        180deg,
        rgb(220, 38, 38) 0%,
        rgb(160, 30, 10) 100%
    );
}

*,
::after,
::before {
    box-sizing: border-box;
}

a {
    color: white;
    text-decoration: none;
}

.h-full {
    height: 100%;
}

.spacer {
    flex-grow: 1;
}

#wrapper {
    height: 100%;
    min-height: 100vh;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 1rem;
    gap: 2rem;
}

#header {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 2rem;
}

#navbar {
    display: flex;
    gap: 1rem;
}

#navbar .icon {
    height: 2rem;
}

#footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

#impressum {
    font-family: sans-serif;
}

#impressum .paragraph {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#strip-image {
    border: 4px solid white;
    background-color: white;
    width: 100%;
    object-fit: contain;
    box-shadow: var(--qq-shadow);
}

#button-bar {
    display: flex;
    justify-content: space-between;
}

.round {
    border-radius: 10rem;
}

#button-bar .button {
    background-color: white;
    cursor: pointer;
    color: rgb(220 38 38);
    font-size: 2.25rem;
    line-height: 2.5rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--qq-shadow);
}
