body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100%;
}

h1 {
    position: absolute;
    bottom: 13rem;
    left: 3.5rem;
    font-size: 3rem;
    color: #ffffff;
    z-index: 1;
    font-family: 'Grenze Gotisch', cursive;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 7rem;
        bottom: -1rem;
        left: 4.5rem;
    }
}

.index-header {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    z-index: 0;
}

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

@media (max-width: 768px) {

    .index-header {
        max-height: 17rem;
    }

    .index-header h1 {
        font-size: 3rem;
        bottom: 2rem;
    }

    .index-header video {
        max-height: 17rem;
    }
}

.quote-text {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
}

.quote-author {
    margin-top: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

main {
    flex: 1;
}

.site-footer {
    position: relative;
    width: 100%;
    padding: 1rem 0;
    color: white;
    text-align: center;
    font-size: 0.875rem;
    margin-top: 2rem;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}