@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

@font-face {
    font-family: AAnotherTag;
    src: url(../assets/aAnotherTag.ttf);
}

* {
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: url('../assets/brick-background.jpg');
    background-size: repeat;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 2.5px;
    font-family: "AAnotherTag", sans-serif;
}

h2,
h3,
h4,
h5,
h6 {
    color: rgb(167, 0, 0);
    /* rgb(187, 55, 55); */
}

h2 {
    font-size: 4rem;
}

.page {
    height: 100vh;
    width: 100%;
    background: #111;

}

a.button {
    padding: 15px 30px;
    background-color: rgb(167, 0, 0);
    /* rgb(187, 55, 55); */
    text-decoration: none;
    color: #fff;
    width: 10vw;
    text-align: center;
    margin: 0 1vw;
}

.subtitle {
    color: #aeaeae;
    margin-bottom: 10vh;
}

#title {
    font-size: 2rem;
    background: linear-gradient(90deg, rgba(17, 17, 17, .75) 50%, rgba(17, 17, 17, .5) 100%);
}

#title h1 {
    font-size: 8rem;
}

#title .title {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
}

#title ul {
    margin-bottom: 4vh;
}

#title ul li {
    list-style: none;
    width: 15vw;
    display: flex;
    justify-content: space-between;
    font-size: 1.6rem;
}


#title .title-video video {
    height: 100vh;
    position: absolute;
    right: 0;
    z-index: -1;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

nav ul {
    list-style-type: none;
    overflow: hidden;
    background-color: #222;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

nav ul li a {
    margin: 0 20px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    margin: 1vh;
    align-items: center;
    display: block;
    text-align: center;
    font-size: 1.6rem;
    text-decoration: none;
}

nav ul li:hover {
    background-color: #111;
    color: #f00;
}

.price-wrapper {
    border-color: #fff;
}

.title-wrapper .subtitle {
    text-align: left;
    margin-right: 7.5vw;
    font-size: 2rem;
    font-family: "AAnotherTag", sans-serif;
}

nav .social {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 2.5vh;
}

nav .angebot {
    font-size: 2rem;
    color: rgb(255, 132, 132);
}

nav ul .links {
    display: flex;
}

nav ul .social {
    align-items: center;
    align-content: center;
    height: 7vh;
}

nav ul .social a img {
    filter: brightness(0) invert(1);
    margin: 0 1.25vw;
    height: 4vh;
}

nav ul img {
    margin-top: 1vh;
    height: 8vh;
}

#title .title .buttons {
    display: flex;
    justify-content: start;
}

@media screen and (max-width: 800px) {
    #title .title {
        width: 100%;
        text-align: center;
        left: 50%;
    }

    #title .title .buttons {
        display: block;
    }

}

@media screen and (max-width: 1800px) {
    a.button {
        width: 15vw;
    }
}

@media screen and (max-width: 1600px) {
    a.button {
        width: 12.5vw;
    }
}

@media screen and (max-width: 1500px) {
    a.button {
        width: 15vw;
    }
}

@media screen and (max-width: 1200px) {
    a.button {
        width: 20vw;
    }
}

@media screen and (max-width: 1000px) {
    body {
        background: #111;
    }

    #title .title {
        left: unset;
        transform: unset;
        top: 25%;
    }

    #title .title h1 {
        width: 90vw;
        margin: 0 auto;
        font-size: 5rem;
        letter-spacing: 7px;
    }

    #title .title-video video {
        width: 100vw;
        right: unset;
    }

    #title .title .subtitle {
        font-size: 1.5rem;
    }

    a.button {
        margin: 3vh auto;
        width: 70vw;
        display: block;
    }

    nav .links {
        display: none !important;
    }

    * {
        max-width: 100% !important;
    }
}