@font-face {
    font-family: 'VCR OSD Mono';
    font-style: normal;
    font-weight: 400;
    src: local('VCR OSD Mono'), url('/fonts/VCR_OSD_MONO.woff') format('woff');
}

body {
    background-color: black;
    font-family: 'VCR OSD Mono', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(16, 246, 0);
}

main {
    display: flex;
    flex-wrap: wrap;
    max-width: 80%;
    color: #8906ff;
    font-size: 1.8rem;
    background-color: rgba(16, 246, 0, 0.4);
}

main:hover {
    background-color: rgba(16, 246, 0, 0.8);
    transition: all 0.01s;
}

h1, h2 {
    font-size: 14pt;
    font-weight: lighter;
    margin: 0;
    padding: 0;
}

p {
    font-size: 14pt;
    max-width: 500px;
}

.title {
    margin-right: 40px;   
}

.links {
    display: flex;
    flex-direction: column;
    font-size: large;
    font-weight: bolder;
    margin: 30px 0;
}

.vimeo-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
 
.vimeo-wrapper iframe {
    width: 100vw;
    height: calc((3/4)*100vw);
    min-height: 100vh;
    min-width: calc((4/3)*100vh);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}