* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-size: 10px;
  font-family: "Slackey", sans-serif;
  background-image:
    linear-gradient(transparent, #b6c470), url(https://i.imgur.com/ysj4ehm.jpeg);
}
#header {
  position: relative;
  width: 950px;
  background-color: antiquewhite;
  border-radius: 15px;
  padding: 20px 20px 20px 20px;
  margin: 50px auto 15px;
  box-shadow: 5px 5px 3px rgb(49, 107, 49);
}
#container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  width: 950px;
  background-color: antiquewhite;
  height: 800px;
  border-radius: 15px;
  padding: 20px 20px 20px 20px;
  margin: 15px auto 15px;
  box-shadow: 5px 5px 3px rgb(49, 107, 49);
}
#row {
  position: relative;
  width: 950px;
  background-color: antiquewhite;
  height: 800px;
  border-radius: 15px;
  padding: 30px 30px 30px 30px;
  margin: 15px auto 15px;
  box-shadow: 5px 5px 3px rgb(49, 107, 49);
}
#main {
  -ms-flex: 70%;
  -webkit-flex: 70%;
  flex: 70%;
  padding: 20px 20px;
}
#sidebar {
  -ms-flex: 30%;
  -webkit-flex: 30%;
  flex: 30%;
  background-color: #ebc7be;
  border-radius: 15px;
  border: 6px inset rgb(255, 235, 235);
  padding: 20px 20px 20px 20px;
  flex-direction: column;
}
.schedule {
  width: 100%;
  height: 20rem;
  padding: 20px 20px 20px 20px;
  background-color: antiquewhite;
  box-shadow: 5px 5px 3px rgb(121, 86, 72);
  border-radius: 10px;
}
.title {
  border: 5px inset rgb(255, 250, 244);
  border-radius: 10px;
}
.nav {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}
.nav ul {
  position: relative;
  display: flex;
  margin: 0;
  padding: 0 30px;
  list-style-type: none;
}
.nav li {
  background-color: antiquewhite;
  border-radius: 20px;
  padding: 10px 25px 10px 25px;
  font-size: 23px;
  margin: 0 10px;
  box-shadow: 5px 5px 3px #325f3a;
  text-transform: uppercase;
}
a {
  color: rgb(148, 140, 104);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: rgb(238, 22, 148);
}
h1 {
  font-size: 40px;
  text-align: center;
  padding: 10px 10px 10px 10px;
  color: rgb(119, 110, 70);
  text-shadow: -2px 2px 0px white;
}
h2 {
  font-size: 30px;
  padding: 0px 10px;
  margin-bottom: 20px;
  color: rgb(119, 110, 70);
}
h3 {
  font-size: 20px;
  color: rgb(119, 110, 70);
}
.center {
  text-align: center;
}
p,
#container li {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  color: black;
  margin: 8px 0 8px 0;
}
#row li {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  color: black;
  margin: 8px 0 8px 15px;
}
.update {
  border-left: 5px solid rgb(49, 107, 49);
  margin-left: 12em;
  padding: 20px 15px 20px 15px;
  background-color: rgb(213, 236, 191);
}
.update h2 {
  color: #325f3a;
}
.date {
  float: left;
  width: 12em;
  text-align: right;
  padding-right: 15px;
}
.date p {
  color: rgb(172, 145, 110);
  margin-bottom: 0;
}
.day {
  font-size: 60px;
  margin-top: -12px;
}
@media screen and (max-width: 700px) {
  #container {
    flex-direction: column;
  }
}
