body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-image: url("/Bilder/background.jpg");
    background-repeat: no-repeat, repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.header{
    box-sizing: boder-box;
    margin: 0;
    padding: 0;
    align-items: center;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    background-color: black;
}

navbar {
    background-color: black;
}

.nav_links {
    list-style: none;
    align-items: center;
}

.nav_links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color:whitesmoke;
}

.logo1 {
    height: 10%;
    width: 10%;
}

.li, .a, .button, .span {
    font-family: "ZCOOL KusiLe", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color:white;
    text-decoration: none;
}

.dropdown {
    background-color: black;
    position: relative;
    display: inline-block;
}

.dropdown-content {
    background-color: black;
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,1);
    padding: 12px 16px;
    z-index: 1;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.logo:hover {
    width: 11%;
    height: 11%;
}

footer {
    background-color: black;
    border-style: solid;
}
#footer-cookie,
#footer-cookie * {
    box-sizing: border-box;
}

#footer-cookie {
    display: none;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 60px;
    background: #303030;
    color: #fff;
}

#footer-cookie a {
    color: #fff;
}

#footer-cookie #description {
    float: left;
}

#footer-cookie #accept {
    float: right;
}

#footer-cookie #accept a {
    border: 1px solid #fff;
    padding: 5px 10px;
    text-decoration: none;
}

.footer {
    margin-top: 3%;
    margin-left: 10%;
    margin-bottom: 5%;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

a {
    color: white;
    text-decoration: none;
}

.subtitles {
    color: white;
    font-size: 30px;
}

.columns {
    display: grid;
    grid-template-columns: 50% 50%;
    margin-left: 30%;
    margin-right: 30%;
}

.content2 {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.imprinttext {
    font-size: 40px;
    color: white;
}

.h1 {
    color: white;
    font-size: 60px;
}

.content {
    margin-top: 22%;
    margin-left: 8%;
    margin-bottom: 15%;
    grid-template-columns: 25% 25% 25% 25%;
}

.wrap {
    width:150px;
    height:130px;
    text-align:center;
}
.triangle {
    position:absolute;
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 130px solid aqua;
    /* 129.903810568 */
    transform-origin: 75px 0;
    /* perspective: 150px; */
    perspective-origin: 50% 50%;
}
.face-1 {
    transform-origin: 75px 0;
    transform: rotateY(0deg) rotateX(19.5deg);
    animation: color1 2s infinite linear;
    animation-delay:0s;
}
.face-2 {
    transform-origin: 75px 0;
    transform: rotateY(120deg) rotateX(19.5deg);
    animation: color1 2s infinite linear;
    animation-delay:1s;
}
.face-3 {
    transform-origin: 75px 0;
    transform: rotateY(240deg) rotateX(19.5deg);
    animation: color1 2s infinite linear;
    animation-delay:0s;
}
.face-4 {
    /* bottom face */
    transform-origin: 0 0px;
    transform: rotateX(90deg) translateY(-87px) translateZ(-122px);
    animation: color1 2s infinite linear;
    animation-delay:1s;
}
.rotor-x {
    width:150px;
    height:130px;
    transform-origin:75px 65px;
    transform-style: preserve-3d;
    animation: spinX 6s infinite linear;
}
.rotor-y {
    width:150px;
    height:130px;
    transform-origin:75px 65px;
    transform-style: preserve-3d;
    animation: spinY 12s infinite linear;
}
.rotor-z {
    width:150px;
    height:130px;
    transform-origin:75px 65px;
    transform-style: preserve-3d;
    animation: spinZ 18s infinite linear;
}
@keyframes spinX {
    from {
        transform: rotateY(0);
    }
    to {
        transform: rotateY(360deg);
    }
}
@keyframes spinY {
    from {
        transform: rotateY(0);
    }
    to {
        transform: rotateY(360deg);
    }
}
@keyframes spinZ {
    from {
        transform: rotateZ(0);
    }
    to {
        transform: rotateZ(360deg);
    }
}
@keyframes color1 {
    0% {
        border-bottom-color: aqua;
    }
    50% {
        border-bottom-color: rgb(8, 109, 109);
    }
    100% {
        border-bottom-color: rgb(20, 216, 216);
    }
}

.headings {
    margin-top: -6%;
    margin-left: 12%;
}

.heading1 {
    color: white;
    font-size: 50px;
}

.heading2 {
    color: white;
}