html, body {
    margin: 0;
    padding: 0;
}

* {
    color: black;
}

.blocksatz {
    text-align: justify !important;
}

/* Fix für Text über Video */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-btn {
    display: inline-block;
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #41f14a 0%, #0aa15b 100%);
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(46,97,72,0.15);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 5px;
}

.nav-btn:hover {
    background: linear-gradient(90deg, #2e6148 0%, #4f46e5 100%);
    transform: translateY(-2px) scale(1.04);
}

.hoverscale {
    transition: transform 0.3s;
    z-index: 0;
    display: inline-block;
}

.hoverscale:hover {
    transform: scale(1.08);
    z-index: 5;
}


a:hover {
    text-decoration: underline;
    color: #37bf33;
}