@import url('https://fonts.googleapis.com/css?family=Montserrat:600|Open+Sans:600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@1,300&display=swap');
*{
  margin: 0;
  padding: 0;
  text-decoration: none;
}

:root{
    --widthOfTheSidebar: 0;
    --ColorOfTheSidebar: #4a7fcf;
    --transitionTime: 0s;
    --font-family: 'Chakra Petch', sans-serif;
}

body{
    width: 100%;
}

#Aktuelles{
    width: 100%;
    min-height: 100%;
    position: absolute;
    transition: all var(--transitionTime) ease;
    z-index: -1;
    color: black;
    font-family: var(--font-family);

    background-image: url(IMG/BackgroundTOP.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

#jubilaeum{
  width: 100%;
  margin-top: 8%;
  display: flex;
}

#Biathlon, #Skihalle{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: start;
}

#Skihalle img, #Biathlon img {
  width: 100%;
  border-radius: 10%;
  display: block;
}

#Skihalle a, #Biathlon a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
}

#Skihalle a::after {
  content: "RESTLOS AUSGEBUCHT";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10%;
  z-index: 10;
}












/*Styling responsive*/
@media(max-width: 860px){
  #jubilaeum{
    text-align: center;
    flex-direction: column; /*Entfernt die Aneinanderreihung der Elemente des FronNews*/
  }

  #Biathlon, #Skihalle{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
}
}