.Calender {
  max-width: 500px;
  width: 100%;
  text-align: center;
  font-family: Agency, sans-serif;
  margin: auto;
  padding: 0 0 40px 0;
}

.Calender h1 {
  font-family: LemonMilk, sans-serif;
  padding-left: 10px;
  font-size: 28px;
}

.Calenderwrapper {
  width: 100%;
  max-width: 800px;

  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  justify-content: center;

  align-items: center;

  -webkit-flex-flow: column wrap;
  flex-flow: column wrap;

  text-align: center;
}

.Calenderwrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.Calenderwrapper ul li.CalenderItem:nth-child(3n-2) {
  background-color: hsla(188, 55%, 23%, 0.15);
}
.Calenderwrapper ul li.CalenderItem:nth-child(3n-1) {
  background-color: hsla(0, 100%, 70%, 0.15);
}
.Calenderwrapper ul li.CalenderItem:nth-child(3n) {
  background-color: hsla(0, 100%, 70%, 0.15);
}

.CalenderItem {
  width: 100%;
  margin-top: 10px;
}

.CalenderItem ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  align-content: center;

  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;

  height: 100%;
}

.Cal_Time {
  text-align: right;
  padding: 10px;
  margin-right: 10px;
  flex: 0 0 12%;
  font-family: Gothic, monospace;
  background-clip: padding-box;
  color:black;
}

.Cal_Speaker_Img {
  margin: 5px;
  align-self: center;
  overflow:hidden;
  flex: 0 0 60px;
}

.Cal_Speaker_Img div {
  width: 50px;
  height: 50px;

  background-size: cover;
  background-position: center center;

  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;

  border: 3px #fff solid;
}

.Cal_Description {
  align-self: center;
  flex: 3 2;
  color:black;
}

.Cal_Speaker_Name {
  align-self: center;
  flex: 1 0;
  color:black;
}

.ThirtyMinutes {
  height: 60px;
  transition: height 0.5s ease;
}

.Hour {
  height: 100px;
  transition: height 0.5s ease;
}

.OneAndAHalfHour {
  height: 150px;
  transition: height 0.5s ease;
}

.Kwarter {
  height: 40px;
  transition: height 0.5s ease;
}

@media all and (min-width: 600px) {
  .Calender {
    max-width: 1000px;
    font-size: 20px;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    justify-content: center;
    align-content: center;

    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;

  }

  .Calenderwrapper {
    margin: auto;
  }

  .ThirtyMinutes {
    height: 70px;
  }

  .Hour {
    height: 120px;
  }

  .Kwarter {
    height: 40px;
  }

  .Cal_Speaker_Img div {
    width: 60px;
    height: 60px;

    margin: 5px 20px 5px 20px;

    background-size: cover;
    background-position: center center;

    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    border-radius: 36px;
  }

  .Cal_Speaker_Img {
    flex: 0 0 110px;
  }

}
