@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');
*{
  margin: 0;
  padding: 0;
  text-decoration: none;
}

:root{
    --widthOfTheSidebar: 0;
    --ColorOfTheSidebar: #4a7fcf;
    --transitionTime: 0s;
}

body{
    width: 100%;
}

#Kalender{
    width: 100%;
    min-height: 100%;
    position: absolute;
    transition: all var(--transitionTime) ease;
    z-index: -1;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-sizing: border-box;
    background-image: url(IMG/mountainBetter.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    height: 100%;
    font-family: "Poppins", sans-serif;
    color: white;
    background-color: white;
}

#Kalender .KalenderEintrag{
  width: 80%;
  max-width: 1000px;
  height: fit-content;
  max-height: 30vh;
  min-height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5vh 0 5vh 0;
  margin: 1vh 5vh 1vh 5vh;
  background-color: rgba(0,0,0,.4);
  border-radius: 20px;
}

#Kalender .KalenderEintrag:nth-child(2){
  display: none;
}

#Kalender .KalenderEintrag:nth-child(1) a{
  display: none;
}

#Kalender .KalenderEintrag .countdown{
  display: flex;
  padding: 1%;
  font-size: 30px;
}

#Kalender .KalenderEintrag .countdown .time{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 15px;
}

#Kalender .KalenderEintrag a{
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  visibility: visible;
}





























/*Styling responsive*/

@media(max-width: 600px){
  #Kalender .KalenderEintrag h1{
    font-size: 25px;
  }
  #Kalender .KalenderEintrag .countdown .time{
    margin: 5px;
  }
  #Kalender .KalenderEintrag .countdown{
    display: flex;
    padding: 1%;
    font-size: 20px;
  }
  #Kalender .KalenderEintrag a{
    color: white;
    text-decoration: none;
    font-size: 1rem;
  }
}

@media(max-width: 400px) {
  #Kalender .KalenderEintrag{
    height: 48vh;
    max-height: auto;
  }
  #Kalender .KalenderEintrag .countdown{
    display: flex;
    padding: 0.5%;
    font-size: 15px;
  }
  
  #Kalender .KalenderEintrag .countdown .time{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 3px;
  }
  
  #Kalender .KalenderEintrag a{
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
  }
}







