* {
  font-weight: normal;
}

body {
  margin: 0px;
  font-size: 1rem;
  font-family: Helvetica, Sans-serif;
}

h1 {
  font-weight: bold;
  font-size: 11.5vw;
  letter-spacing: -0.05em;
  margin: 0px;
  text-align: center;
  position: fixed;
  bottom: -12px;
  width: 100%;
  transition-property: bottom;
  transition-duration: 1000ms;
}
h1:hover {
  bottom: 0px;
}

h2 {
  margin: 0px;
  margin-bottom: 3rem;
  font-weight: bold;
  font-size: 12vw;
  letter-spacing: -0.05em;
  text-align: center;
}

h3 {
  margin: 2rem 0rem 0rem;
  font-size: 1rem;
  letter-spacing: initial;
}

h4 {
  margin: 0px;
}

p, ul, div {
  font-size: 2rem;
  font-size: 1.5rem;
  line-height: 1.1em;
}

ul, ol {
  margin: 0.5rem 0px 1rem;
  padding-inline-start: 1.25em;
}

ul p,
ol p {
  margin: 0.5rem 0px 1rem;
}

a {
  text-decoration: none;
  color: black;
}

li {
  margin-bottom: 0.25em;
}

p a,
li a {
  background-color: white;
  color: black;
}

.subhead {
  text-align: center;
}

@media screen and (min-width: 600px) {
  h1 {
    bottom: -55px;
  }
  h2 {
    font-size: 6vw;
  }
}
@media screen and (min-width: 1000px) {
  p, ul, div {
    font-size: 2rem;
  }
  h1 {
    bottom: -90px;
  }
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 1rem 0px;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
}
nav a {
  padding: 0.5rem 0.5rem;
  outline: 1px solid black;
  color: black;
  background-color: white;
  transition: 500ms;
}
nav a:hover {
  background-color: black;
  color: white;
}

.page-container {
  margin-top: 6rem;
  margin-bottom: 9rem;
  margin-right: 1rem;
  margin-left: 1rem;
}

@media screen and (min-width: 600px) {
  .page-container {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .page-container {
    margin-right: 14rem;
    margin-left: 14rem;
  }
}
.calendar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.class {
  padding: 1rem;
  outline: 1px solid black;
  color: black;
  background-color: white;
  transition: 500;
  cursor: pointer;
  height: 4rem;
  width: 4rem;
  margin-bottom: 1px;
}
.class h2 {
  pointer-events: none;
  line-height: 4rem;
}
.class:hover {
  background-color: lime;
  color: white;
}
.class:active {
  background-color: cyan;
}

section {
  display: none;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  align-items: stretch;
  justify-content: center;
}
section:hover {
  color: initial;
}

.show {
  display: flex;
}

.class-wrapper {
  padding: 2rem;
  border-radius: 2rem;
  background-color: white;
  margin: 4rem 1rem 3rem;
  position: relative;
  font-size: 2rem;
}
.class-wrapper:hover {
  color: initial;
}

.close-button {
  top: 2rem;
  right: 2rem;
  position: absolute;
  stroke: black;
}
.close-button:hover {
  fill: yellow;
  stroke: rgb(255, 63, 183);
}
.close-button svg {
  width: 4rem;
  height: 4rem;
}

.class-content {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
}
.class-content:hover {
  color: black;
}

.class-content::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* make scrollbar transparent */
  display: none;
}

.class .tooltip {
  opacity: 0;
  font-size: 1rem;
  color: black;
  position: relative;
  top: -6rem;
  width: 4rem;
  text-align: center;
  transition: 500ms;
  pointer-events: none;
}

.class:hover .tooltip {
  opacity: 1;
}

@media screen and (min-width: 1000px) {
  .class-wrapper {
    margin: 5rem;
  }
  .class {
    height: 6rem;
    width: 6rem;
  }
  .class h2 {
    line-height: 6rem;
  }
  .close-button svg {
    width: 6rem;
    height: 6rem;
  }
  .class .tooltip {
    top: -7rem;
    width: 6rem;
  }
}
.person {
  outline: 1px solid black;
  padding: 1em;
  margin: 1px 1px 0px 0px;
  background-color: white;
  color: black;
  transition: 500ms;
}
.person div {
  font-weight: bold;
}

.selected {
  background-color: lime;
}

.button_wrapper {
  display: flex;
  margin: 1em;
  justify-content: center;
}

button:hover {
  background-color: lime;
}

button:active {
  background-color: cyan;
}

details {
  margin: 0.5em 0;
}

summary {
  cursor: pointer;
  background-color: white;
  color: black;
  transition: 500ms;
  padding: 0.25em;
}

summary::marker {
  width: 1em;
}

details p,
details ul {
  margin-left: 1em;
}

/*# sourceMappingURL=style.css.map */
