html,
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0px;
  padding: 0px;
  width: 100vw;
  height: 100vh;
  font-size: 16px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  background: #cba3cb;
  color: #231942;
}

header {
  display: flex;
  height: 3.5rem;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: rgb(159, 134, 192, 0.2);
  border-bottom: 1px solid rgba(190, 149, 196, 0.5);
}

header nav {
  margin-left: auto;
}

main {
  display: flex;
  padding: 3.5rem 0rem 2.5rem 0rem;
  overflow: auto;
  height: 100vh;
  box-sizing: border-box;
  /* background-color: #e0b1cb; */
  background: repeating-linear-gradient(
      45deg,
      #0000 calc(-650% / 13) calc(50% / 13),
      #cda3d4 0 calc(100% / 13),
      #0000 0 calc(150% / 13),
      #cda3d4 0 calc(200% / 13),
      #0000 0 calc(250% / 13),
      #cda3d4 0 calc(300% / 13)
    ),
    repeating-linear-gradient(
        45deg,
        #0000 calc(-650% / 13) calc(50% / 13),
        #cda3d4 0 calc(100% / 13),
        #0000 0 calc(150% / 13),
        #cda3d4 0 calc(200% / 13),
        #0000 0 calc(250% / 13),
        #cda3d4 0 calc(300% / 13)
      )
      12px 12px,
    repeating-linear-gradient(
      -45deg,
      #0000 calc(-650% / 13) calc(50% / 13),
      #cda3d4 0 calc(100% / 13),
      #0000 0 calc(150% / 13),
      #cda3d4 0 calc(200% / 13),
      #0000 0 calc(250% / 13),
      #cda3d4 0 calc(300% / 13)
    ),
    repeating-linear-gradient(
        -45deg,
        #0000 calc(-650% / 13) calc(50% / 13),
        #cda3d4 0 calc(100% / 13),
        #0000 0 calc(150% / 13),
        #cda3d4 0 calc(200% / 13),
        #0000 0 calc(250% / 13),
        #cda3d4 0 calc(300% / 13)
      )
      12px 12px #e0b1cb;
  background-size: 24px 24px;
}

main .content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  flex: 1 1 auto;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: bold;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background-color: rgb(159, 134, 192, 0.2);
  border-top: 1px solid rgba(190, 149, 196, 0.5);
}

h1 {
  margin: 0.5rem;
}

button,
a.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #9f86c0;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #231942;
  padding: 0.5rem;
  font-weight: bold;
  gap: 0.5rem;
}

button,
a.button:hover {
  background-color: #9f86c0;
}

a.button:active {
  background-color: #5e548e;
}

.sticky-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}

.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}

.bg-blur {
  backdrop-filter: blur(0.85rem);
  -webkit-backdrop-filter: blur(0.85rem);
}

.schedule-list {
  list-style: none;
  text-align: center;
  padding: 0px;
  font-weight: 600;
}

.schedule-separator {
  display: flex;
  text-align: center;
  align-items: center;
  min-width: 20rem;
  font-style: italic;
  color: #5e548e;
  margin: 1.5rem auto;
  font-weight: 400;
}

.schedule-separator::before,
.schedule-separator::after {
  flex: 1;
  content: "";
  border-bottom: 1px dashed #5e548e;
  margin: 0px 1rem;
}

/* width */
::-webkit-scrollbar {
  width: 0.5rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: #e0b1cb;
  border-radius: 0.25rem;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #9f86c0;
  border-radius: 0.25rem;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #5e548e;
}
