h1 {
    font-family: 'Lobster', cursive;
    font-size: 64px;
    color: #f5a623;
    text-shadow: 2px 2px 0px #7e3f98;
    font-weight: bold;
    font-style: oblique 10deg;
  }

  .content {
    min-height: 75vh;
  }



.bg-header {
background: linear-gradient(
  175deg, /* Richtung des Gradients, 90 Grad für horizontal */
  #7e3f98 45%, /* Lila bis 33% */
  #ffffff 45%, #ffffff 53%, /* Weiß zwischen 33% und 66% */
  #7e3f98 53%, #7e3f98 54%, /* Weiß zwischen 33% und 66% */
  #ffffff 54%, #ffffff 55%, /* Weiß zwischen 33% und 66% */
  #f5a623 55%, #f5a623 65%,/* Orange ab 66% */
  #ffffff 65%, #ffffff 66%,/* Orange ab 66% */
  #7e3f98 66%, #7e3f98 67%,/* Orange ab 66% */
  #ffffff 67% /* Lila ab 85% */
);

background: -o-linear-gradient(
    175deg, /* Richtung des Gradients, 90 Grad für horizontal */
    #7e3f98 45%, /* Lila bis 33% */
    #ffffff 45%, #ffffff 53%, /* Weiß zwischen 33% und 66% */
    #7e3f98 53%, #7e3f98 54%, /* Weiß zwischen 33% und 66% */
    #ffffff 54%, #ffffff 55%, /* Weiß zwischen 33% und 66% */
    #f5a623 55%, #f5a623 65%,/* Orange ab 66% */
    #ffffff 65%, #ffffff 66%,/* Orange ab 66% */
    #7e3f98 66%, #7e3f98 67%,/* Orange ab 66% */
    #ffffff 67% /* Lila ab 85% */
);

background: -moz-linear-gradient(
    175deg, /* Richtung des Gradients, 90 Grad für horizontal */
    #7e3f98 45%, /* Lila bis 33% */
    #ffffff 45%, #ffffff 53%, /* Weiß zwischen 33% und 66% */
    #7e3f98 53%, #7e3f98 54%, /* Weiß zwischen 33% und 66% */
    #ffffff 54%, #ffffff 55%, /* Weiß zwischen 33% und 66% */
    #f5a623 55%, #f5a623 65%,/* Orange ab 66% */
    #ffffff 65%, #ffffff 66%,/* Orange ab 66% */
    #7e3f98 66%, #7e3f98 67%,/* Orange ab 66% */
    #ffffff 67% /* Lila ab 85% */
);

}



.header-container {
    z-index: -2;
    padding-top: 30px;
    height: 320px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.event-link {
    text-decoration: none;
}

.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-container {
    color: black;
    font-family: 'Roboto' Arial, sans-serif;;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border-radius: 10px;
}

.badge {
    border-radius: 15px;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    width: 64px;
    text-align: center;
}

.himmel {
    background-color: #7e3f98;
}

.hölle{
    background-color: #f5a623;
 }

.day-span {
    color: #c3b0cb;
    font-weight: bold;
    font-size: 18px;
}

.date-span {
    font-weight: bold;
    font-size: 16px;
}

.year-span {
    color: #7e7e7e;
}

.time-span {
    font-style: italic;
}

.footer-gradient {
    bottom: 0;
    background: linear-gradient(
        175deg, /* Richtung des Gradients, 90 Grad für horizontal */
        #ffffff 45%, /* Lila bis 33% */
        #7e3f98 45%
    );
}



/*FOOTER*/
footer {
    z-index: -2;
    height: 250px;
    color: #dbdbdb;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    width: 100%;
    padding: 2rem 0;
}

footer a {
    text-decoration: none;
    color: #dbdbdb;
    transition: color 0.3s;
}

footer a:hover {
    color: #FBB911;
}

footer div {
    position: relative;
    z-index: 1;
    width: 33%;
}

.footer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-box p {
    text-align: center;
}

.footer-logo-ztix {
    height: 3rem;
}

.fixed-bottom {
    position: absolute;
    bottom: 0;
}