*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

html{
    font-size: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    color: #000000;
}

header{
    width: 100%;
    height: 100%;
    background: #ffffff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body{
    width: 100%;
    height: 100%;
    background: #ffffff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

h1 a{
    text-decoration: none;
    color: #ffffff;
}

.top-nav li a {
    text-decoration: none;
    color: #ffffff;
}
/* End Global Design */









/* Start header */
header{
    width: 100%;

}

.top-nav{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -100vh;
    z-index: 50;
    background-color: #000000;
    border-bottom-right-radius: 100%;
    border-bottom-left-radius: 100%;
    transition: all 650ms cubic-bezier(1,0,0,1)
}

.nav-list{
    list-style: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

li{
    margin: 0 2rem;
}

.nav-link{
    font-family: 'Amatic SC', sans-serif;
    font-size: 5rem;
    padding: 1rem;
}
.nav-link:hover,
.nav-link:focus{
    background: linear-gradient(to top, #c30000, #E89104);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: ease-in 250ms;

}

.top-nav.open{
    top: 0;
    border-radius: initial;
}

.menu-toggler{
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 5rem;
    height: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1500;
    transition: transform 650ms ease-out;
}

.menu-toggler.open{
    transform: rotate(-45deg);
}

.bar{
    background: linear-gradient(to right, #c30000, #E89104);
    width: 100%;
    height: 4px;
    border-radius: .8rem;
}

.bar.half{
    width: 50%;
}

.bar.start{
    transform-origin: right;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.open .bar.start{
    transform: rotate(-90deg) translateX(.8rem);
}

.bar.end{
    align-self: flex-end;
    transform-origin: left;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.open .bar.end{
    transform: rotate(-90deg) translateX(-.8rem);
}

.landing-text h1{
    font-size: 5rem;
    font-family: 'Aliens', sans-serif;
    font-weight: lighter;
    padding-bottom: 20px;
    width: 30%;
    background-color: #000000;
    margin: auto;
}

.landing-text h1:hover{
    background: #c30000;
    transition: ease 250ms;
}


@font-face {
    src: url("../fonts/aliens.ttf");
    font-family: 'aliens';
}

/* End header*/










/* Start Body Design */

.impressum-header h1{
    margin: auto;
    font-family: Amatic SC, sans serif;
    font-weight: 700;
    font-size: 3rem;
    align-items: center;
    padding: 10px;
    padding-bottom: 50px;
    padding-top: 50px;
}

.impressum{
    margin: auto;
    padding-right: 20%;
    padding-left: 20%;
    text-align: left;
}
.impressum p{
    margin: auto;
    font-family: Barlow Condensed, sans serif;
    font-weight: 400;
    font-size: 2rem;
    text-align: left;
}

.title{
    margin: auto;
    font-family: Barlow Condensed, sans serif;
    font-weight: 700;
    font-size: 2rem;
    text-align: left;
    padding-top: 50px;
    line-height: 50px;
}

.logo img{
    width: 20%;
    padding-top: 10%;
    padding-bottom: 20px;
}

.impressum li{
    font-size: 20px;
    text-align: left;
}

/* End Body Design */










/* Start footer */
.copyright{
    width: 100%;
    text-align: center;
    background-color: #3e3e3e;
    padding: 2rem 0;
    position: relative;
}

.copyright p{
    font-size: 1.4rem;
    color: #ffffff;
}

.links{
    padding: 10px;
    padding-bottom: 2rem;
    color: #ffffff;
    margin: auto;
    background-color: #3e3e3e;
    display: flex;
    justify-content: center;
}

.links li{

    list-style: none;
    font-size: 1.4rem;
    text-align: center;
    padding: 2px;
}

.links a{
  text-decoration: none;
  color: #ffffff;
}

.links a:hover{
    color: #c30000;
    transition: ease 250ms;
}
/* End footer */





@media screen and (max-width: 768px) {

    header{
        width: 100vw;

    }

    .menu-toggler{
      height: 3rem;
      width: 3rem;
    }

    .landing-text h1{
        top: 2rem;
        width: 100%;
        padding: 30px;
        padding-top: 60px;
    }

    .landing-text h1:hover{
        background: #000000;
    }

    .menu-toggler{
        top: 3rem;
        right: 3rem;
    }

    .nav-list{
        flex-direction: column;
    }

    li{
        margin: 2rem 0;
    }

    .nav-link{
        font-size: 4.5rem;
    }

    .impressum-header{
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    .impressum{
      padding: 0;
      margin-left: 2%;
      margin-right: 2%;

    }

    .impressum p{
      font-size: 2rem;
    }

    .links{
        display: inline-flex;
        flex-direction: column;
    }

    .links li {
        text-decoration: none;
        list-style: none;
        font-size: 1.8rem;
        text-align: center;
        margin: .5rem 0;
    }

  }
