* {
    box-sizing: border-box;
}

:root {
    --primary : #fcb03f;
    --secondary : #000;
}

html, body {
    overflow-x: hidden;
}
body {
    position: relative;
}

body {
    background-color: var(--primary);
    font-family:  'Montserrat',  sans-serif;
    margin: 0;
    overflow: hidden;
    width: 100vw;
}


header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: fixed;
    padding: 20px;
    width: 100%;
    z-index: 10;
}

.link {
    border-radius: 15px;
    background-color: #fff;
    color: var(--secondary);
    text-decoration: none;
    max-width: 500px;
    margin: 10px 0;
    padding: 10px;
    text-align: center;
    width: 100%;
}

.link:hover {
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: bold;
}

img {
    max-width: 600px;
}

main {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 50px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

video {
    max-height: calc(100vh - 310px);
    max-width: 1200px;
}

main div {
    align-items: center;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    color: var(--secondary);
    font-size: 5rem;
    margin-top: 20px;
    text-align: center;
    z-index: 20;
}

iframe {
    text-align: center;
}

h1 span {
    font-weight: bold;
}

h2 {
    color: var(--secondary);

    font-size: 3rem;
    margin-top: 0;
}

p {
    margin-bottom: 10px;
    margin-top: 0;
}

#menu {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--secondary);

    height: 100vh;
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -110vw;
    transition: all 500ms;
    z-index: 100;
}

#menu ul {
    margin-left: 0;
}

#menu li {
    list-style: none;
}

#menu li a {
    display: block;
    color: #fff;
    padding: 10px;
    text-decoration: none;
}

#menu.active {
    right: 0;
}

p {
    line-height: 1.5;
}

.a:hover {
    opacity: 0.7;
}


.fa-bars {
    color: #fff;
    font-size: 1.8rem;
}

.fa-bars:hover {
    cursor: pointer;
    color: var(--secondary);
}


.fa-times {
    color: var(--primary);
    font-size: 1.8rem;
}

.fa-times:hover {
    color: #000;
    cursor: pointer;
}

.fa-times {
    right: 20px;
    position: absolute;
    top: 20px;
}


main.impressum {
    flex-direction: column;
    color: #fff;
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 767px) {
    h1 span {
        display: block;
        width: 100%;
    }

}