:root {
    --variable: 20px;
    --line-height: 1.1;
    --hf-line-height: 1.35;
}

@media screen and (max-width: 992px) {
    :root {
        --variable: 16px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
}

body {
    background-color: #0000ff;
    color: #fff;
    font: 100 var(--variable)/var(--line-height) 'Helvetica', 'Arial', sans-serif;
}

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

html,
body {
    height: 100%;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--variable);
    height: calc(99% - ((var(--variable) * 2) + (9px * var(--hf-line-height))));
}

.content {
    height: 1%;
}

.header p {
    font-size: 16px;
}

p {
    text-align: center;
    max-width: 25em;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

p:last-of-type {
    margin-bottom: 0;
}

.footer {
    padding: var(--variable);
    line-height: var(--hf-line-height);
    text-align: center;
}

.copyright {
    font-size: 9px;
}

.e {
    font-family: 'Georgia', serif;
    font-style: italic;
}

.mail {
    font-family: 'Courier New', monospace;
}

/* tracking animation */

.tracking {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000ff;
    opacity: 1;
    animation: fade linear 0.5s;
    animation: fade linear 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0.66s;
    z-index: 99;
}

.tracking video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* tracking animation */

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #0000ff;
    animation: overlay linear 0.5s;
    animation: overlay linear 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: .66s;
    z-index: 98;
}


@keyframes overlay {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}