body {
  background-color:#e9ebf5;
  margin: 0;
  font-family: Montserrat, sans-serif;
  color: #1B2522;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1B2522;
  padding: .75rem 1rem;
}

.nav-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;

  animation: nav-enter var(--nav-duration) var(--nav-delay) backwards;
}

.logo {
  width: 30px;
}

.nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  list-style-type: none;
}

.nav-list a {
  text-decoration: none;
  margin-left: 1rem;
  color: white;

  transition: color 100ms;
}

.nav-list a:hover {
  color: #CCC;
}

.btn {
  background-color: hsl(261, 20%, 50%);
  color: white;
  border-radius: 10000px;
  padding: .25em 1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  text-align: center;
}

.btn:hover,
.btn:focus {
  background-color: hsl(261, 20%, 37%);
}

.wrapper {
  margin-top: 1rem;
  text-align: center;
}

H1 {
  text-align: center;
  margin-top: 4rem;
  color: #1B2522;
}

.myTimetable {
  width: 90%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  table-layout: fixed;
}

.myTimetable THEAD{
  color: #1B2522;
}

.myTimetable TBODY {
  background-color: #292938;
}

.myTimetable TD {
  border: 1px solid #CCC;
  padding: 6px;
  text-align: center;
}
.myTimetable TBODY TR TD:first-child {
  color: #CCC;
  background-color: #463b57;
  font-weight: bold;
}

.break, .lunch {
  color: #CCC;
  background-color: #6b5c81 !important;
  font-style: italic;
}

.subject {
  color: #CCC;
  font-size: 12pt;
  margin-bottom:4px;
}

.room {
  color: #CCC;
  font-size: 10pt;
  font-style: italic;
}

#alertLunch, #alertDinner {
  background-color: #FFF;
  color: #BBB;
}

@keyframes nav-enter {
  from {
    transform: translateY(-100%);
  }
}