@font-face {
  font-family: "Courier New";
  src: url("courier-new.ttf") format("truetype");
}

@font-face {
  font-family: "Courier";
  src: url("courier.otf") format("opentype");
}


@keyframes fade-in {
    from { opacity: 0 }
    top { opacity: 1 }
}

.u-fadeIn {
    opacity: 0;
    transition: opacity 2s;
}

.u-fadeIn.is-visible {
    opacity: 1;
}

.u-fadeOut {
    opacity: 1;
    transition: opacity 2s;
}

.u-fadeOut.is-hidden {
    opacity: 0;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    font-family: 'Courier New', monospace;
    background: rgb(0,0,0);
    color: gainsboro;
    line-height: 1.25;
    /* -webkit-text-stroke: 0.5px currentColor; */
}

@media (max-width: 700px) {
    html {
        font-size: 14px;
    }
    
}

::selection {
    color: gainsboro;
    -webkit-text-stroke-color: gainsboro;
}

body {
    margin: 0;
    max-width: 1000px;
    margin: auto;
}

h1, h2 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

p {
    margin: 0;
}

dl {
    margin: 0;
}

dd, dt {
    margin: 0;
    display: inline;
}

.NavHint {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 2rlh;
    font-family: 'Courier', monospace;
    -webkit-text-stroke: none;
}

.Page {
    display: grid;
    padding: 2rlh;
}

.Header {
    height: 75vh;
    text-align: center;
}

.Main {
    display: grid;
    gap: 6rlh;
    text-align: center;
}

.Film-title {
    -webkit-text-stroke: 1px currentColor;
}

.Footer {
    height: 75vh;
    display: flex;
    align-items: end;
}