:root {
    --footer-size: 3em;
}

body {
    margin: 0;
    font-size: 16px;
    overflow: hidden; /*to remove*/

}

.hero {
    width: 100%;
    height: calc(100vh - var(--footer-size));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero .header {
    display: block;
    color: #fff;
    z-index: 2;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(83, 4, 25, 0.1);
    backdrop-filter: blur(2px) saturate(50%);
    z-index: 0;
}

.logo {
    position: relative;
    width: auto;
    height: auto;
    display: block;
    min-height: 20vh;
    max-width: 75%;
    left: 50%;
    margin-bottom: -10%;
    aspect-ratio: 1/1;
    transform: translate(-50%);
}

.title {
    font-size: 4em;
    font-family: Bangers, Impact,'Arial Narrow Bold', sans-serif;
    font-weight: 400;
}

.subtitle {
    font-size: 2em;
    font-family: Roboto, Arial, Helvetica, sans-serif
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

footer {
    height: var(--footer-size);
    background-color: #940028;
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .mail {
    text-decoration: none;
    color: #fff;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: 600;
}