body {
    color: white;
    background-color: rgba(0, 0, 0, 0.75);
    box-sizing: border-box;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

article {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}


h1 {
    font-size: 2.25rem;
    font-weight: 700;
}

p,
h1,
h2 {
    margin: 0
}

a {
    color: white;
    transition: color 300ms;
}

a:hover {
    color: red;
}

video {
    opacity: 0.5;
    height: 100vh;
    width: 100vw;
    object-fit: contain;
    object-position: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1
}

h2,
.excerpt,
.links {
    font-size: 1.5rem;
}

.contact {
    margin-top: 2rem;
}

.contact p {
    margin-top: 0.25rem;
}

.excerpt {
    margin-top: 4rem;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    gap: 0.25rem;
}

.footer {
    margin-top: 3rem;
}

.font-condensed-bold {
    font-family: "HelveticaNeue-CondensedBold",
        "HelveticaNeueBoldCondensed",
        "HelveticaNeue-Bold-Condensed",
        "Helvetica Neue Bold Condensed",
        "HelveticaNeueBold",
        "HelveticaNeue-Bold",
        "Helvetica Neue Bold",
        "HelveticaNeue",
        "Helvetica Neue",
        'TeXGyreHerosCnBold',
        "Helvetica",
        "Tahoma",
        "Geneva",
        "Arial Narrow",
        "Arial",
        sans-serif;
    font-weight: 600;
    font-stretch: condensed;
}

@media (max-width:1024px) {
    video {
        object-fit: cover;
    }
}
