
@font-face {
 font-family: 'Univers 55';
 src: url(http://hangry.neocities.org/fonts/univers-lt-55-roman.ttf);
}

@font-face {
 font-family: 'Univers 65';
 src: url(http://hangry.neocities.org/fonts/univers-lt-65-bold.ttf);
}

@font-face {
 font-family: 'Univers 73';
 src: url(http://hangry.neocities.org/fonts/univers-lt-73-black-extended.ttf);
}

@font-face {
 font-family: 'Univers 47';
 src: url(http://hangry.neocities.org/fonts/univers-lt-47-condensed-light.ttf);
}

@font-face {
 font-family: 'Univers 75';
 src: url(http://hangry.neocities.org/fonts/univers-lt-75-black.ttf);
}

@font-face {
 font-family: 'Univers 57';
 src: url(http://hangry.neocities.org/fonts/univers-lt-57-condensed.ttf);
}

@font-face {
 font-family: 'Univers 67';
 src: url(http://hangry.neocities.org/fonts/univers-lt-67-condensed-bold.ttf);
}


body {
  font-family: 'Univers 55';
  background: #faf9f9;
}

header {
    font-family: 'Univers 75';
  text-align: center;
}

#calendar {
  width: 100%;
}

#calendar a {
  color: #56a9b7;
  text-decoration: none;
}

#calendar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

#calendar li {
  display: block;
  float: left;
  width: 14.342%;
  padding: 5px;
  box-sizing: border-box;
  border: 1px solid #56a9b7;
  margin-right: -1px;
  margin-bottom: -1px;
}

#calendar ul.weekdays {
  height: 40px;
  background: #56a9b7;
}

#calendar ul.weekdays li {
  text-align: center;
  text-transform: uppercase;
  line-height: 20px;
  border: none !important;
  padding: 10px 6px;
  color: #fff;
  font-size: 13px;
}

#calendar .days li {
  height: 180px;
}

#calendar .days li:hover {
  background:  #56a9b7;
}

#calendar .date {
  text-align: center;
  margin-bottom: 5px;
  padding: 4px;
  background:  #56a9b7;
  color: #fff;
  width: 20px;
  border-radius: 50%;
  float: right;
}

#calendar .event {
  clear: both;
  display: block;
  font-size: 13px;
  border-radius: 4px;
  padding: 5px;
  margin-top: 40px;
  margin-bottom: 5px;
  line-height: 14px;
  background: #e9e9e9;
  border: 1px solid #3d3d3d;
  color: #000;
  text-decoration: none;
}

#calendar .event-desc {
  color: #294643;
  margin: 3px 0 7px 0;
  text-decoration: none;
}

#calendar .other-month {
  background: #d3e6e9;
  color: #000;
}

/* ============================
                Mobile Responsiveness
   ============================*/
@media (max-width: 768px) {
  #calendar .weekdays, #calendar .other-month {
    display: none;
  }

  #calendar li {
    height: auto !important;
    border: 1px solid #ededed;
    width: 100%;
    padding: 10px;
    margin-bottom: -1px;
  }

  #calendar .date {
    float: none;
  }
}