* {
    margin: 0;
    box-sizing: border-box;
}

h1 {
    font-size: 84px;
    font-weight: 500;
    margin: 36px;
}

h2 {
    font-size: 64px;
    font-weight: 500;
    margin: 12px;
    text-align: center;
    color: black;
}

span {
    font-size: 36px;
    color: red;
}

p {
    font-size: 30px;
    margin: 0 42px;
    text-align: center;
}

button {
    font-family: 'zabras', Arial, Helvetica, sans-serif;
    font-size: 24px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background-color: #ffcc00;
    cursor: pointer;
    box-shadow: 0 4px #cc9900;
    height: 46px;
    margin-bottom: 20px;
    color: black;
}

button:active {
    box-shadow: 0 2px #cc9900;
    transform: translateY(2px);
}

button:hover {
    background-color: #ffdb4d;
}

.height-widht {
    width: 100%;
    height: 100%;
}

.d-none {
    display: none;
}

video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 2;
    background-color: #000;
}

a {
    text-decoration: none;
    color: #ffcc00;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #ffcc00;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #cc9900;
}

@-moz-document url-prefix() {
    .impressum-content {
        scrollbar-width: 10px;
        scrollbar-color: #ffcc00 grey;
    }
}

@media only screen and (max-width: 950px) {
    h1 {
        font-size: 72px;
        font-weight: 500;
        margin: 22px;
    }

    button {
        font-size: 22px;
        margin-bottom: 6px;
        height: 40px;
    }

    h2 {
        font-size: 48px;
        margin: 14px;
    }

    span {
        font-size: 30px;
    }

    p {
        font-size: 26px;
        margin: 0 42px;
    }
}

@media only screen and (max-height: 410px), (max-width: 720px) {
    h1 {
        display: none;
    }

    button {
        font-size: 20px;
        padding: 10px 20px;
        height: 40px;
    }

    h2 {
        font-size: 36px;
        margin: 12px;
    }

    span {
        font-size: 28px;
    }

    p {
        font-size: 20px;
        margin: 0 40px;
    }
}