#background-video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

h1 {
    color: white;
    font-family: monospace;
    font-weight: bold;
    text-align: right;
}

h1 {
    font-size: 1rem;
    margin-top: 2vh;
    margin-right: 2vh;
}

@media (max-width: 720px) {
    #background-video {
        display: none;
    }

    body {
        background: url("background.png") no-repeat;
        background-size: cover;
    }
}