* {
    box-sizing: border-box;
}

:root {
    --color-background: #0a0a0a;
    --color-link: #dd64b3;
    --color-link-border: #7053a6;
    --color-text: #aeb7fe;
    --footer-height: 4rem;
    --footer-color-background: rgba(0, 0, 0, 0.5);
}

html {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: 'DM Sans', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

body {
    color: var(--color-text);
    margin: 0 auto;
    padding: 0;
}

a {
    border-bottom: 2px solid var(--color-link-border);
    color: var(--color-link);
    display: inline-block;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
}

a:hover {
    border-bottom: 2px dotted var(--color-link-border);
}

body {
    margin: 0 auto;
}

.c-content {
    align-items: center;
    display: flex;
    justify-content: center;
    height: calc(100vh - var(--footer-height));
}

.c-sign {
    animation: blink 1.75s linear infinite;
    border: 2px solid dashed var(--color-link-border);
    font-family: 'Monofett', monospace;
    line-height: 0.9;
    text-align: center;
}

.c-sign__open {
    color: #224ae3;
    font-size: 20vw;
    margin-bottom: 0;
    text-shadow: 2px 4px 40px rgba(255, 255, 255, 0.2);
}

.c-sign__time {
    color: #e74874;
    font-size: 11vw;
    text-shadow: 2px -2px 30px rgba(255, 255, 255, 0.2);
}

.c-footer {
    align-items: center;
    background-color: var(--footer-color-background);
    display: flex;
    font-size: 0.85rem;
    height: var(--footer-height);
    inset: auto 0 0 0;
    justify-content: center;
    padding: 1rem 1.5rem 1rem;
    position: fixed;
    width: 100%;
}

@media (min-width: 960px) {
    :root {
        --footer-height: 3rem;
    }
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}