@import url('https://fonts.googleapis.com/css?family=PT+Mono|PT+Sans');
* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}
html, body {
  font: normal 14px/150% 'PT Sans', sans-serif;
  text-decoration: none;
  color: #000;
  height: 100%;
  width: 100%;
}
body {
  margin: 0 auto;
  padding: 0 1em;
  background: #acd center center no-repeat url('../img/C20-background.png');
  background-size: cover;
}
h1, h2, h3, h4, h5, h6, h7 {
  font-size: 2em;
  line-height: 150%;
  font-family: 'PT Mono', monospace;
  font-weight: bold;
  margin-bottom: 0.5em;
}
h1, h2 {
  display: inline-block;
}
a {
  text-decoration: none;
  color: #000;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
  opacity: 0.75;
}
header, main {
  max-width: 1240px;
  margin: 0 auto;
}
header {
  padding: 1.5em 0;
  padding-left: 4em;
  color: #fff;
  position: relative;
  background: left center no-repeat url('../img/cloud-logo-color-full.svg');
  background-size: 3em;
}
header h1 {
  color: #fff;
  margin: 0;
  display: inline;
  font-size: 1.3em;
  letter-spacing: 0.2em;
  font-weight: normal;
  text-transform: uppercase;
}
header #info {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  color: green;
  padding: 1.5em 0;
}
main {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 1em;
  height: 90vh;
}
#calendar {
  width: 100%;
  height: 100%;
  margin: auto
}
.fc-v-event {
  background-color: rgba(236, 125, 77, 0.5);
  border: 0;
  border-left: 4px solid rgba(236, 125, 77, 1);
  padding: 0.25em;
  border-radius: 5px;
}
.fc-daygrid-event-dot {
  border-color: rgba(236, 125, 77, 0.75)
}
.fc-v-event .fc-event-main {
  color: #000;
}
.fc-event-title-container {
  font-weight: bold;
}
.fc-day-today, .fc .fc-timegrid-col.fc-day-today, .fc .fc-daygrid-day.fc-day-today {
  background-color: rgba(172, 206, 219, 0.2)
}
.fc-day-today .fc-col-header-cell-cushion { padding: 0 1em; margin: 2px; width: 90%; border-radius: 10px;  background-color:  rgba(236, 125, 77, 1); color: #fff; }
.fc-day-sat, .fc-day-sun {
  background: rgba(0, 0, 0, 0.03)
}
.fc-reload-button { height: 34px; width: 34px; background: center center no-repeat url('../img/icons8-neustart.svg'); background-size: 70% auto; }

.fade-in {
  opacity: 0;
  animation: fadeInEffect 1s ease-in forwards;
}
@keyframes fadeInEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}