html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

.main {
    position: relative;
    min-height: 100vh;
}

.main-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main-hero video {
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.main-content {
    position: relative;
    z-index: 10;
    box-sizing: border-box;
    padding: 2rem;
    font-size: 2rem;
}

p:first-child {
    margin-top: 0;
}

p {
    text-shadow: 2px 2px 2px #0f0;
}

a:link,
a:visited {
    color: black;
}