body {
  font-family: Arial, sans-serif;
  margin: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

header {
  background-color: orange;
  width: 100%;
  height: 25px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 10px;
}

header p {
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

header:hover p {
  animation-play-state: paused;
}

.spacer {
  display: inline-block;
  width: 200px;
}

#timeline {
  width: 100%;
  margin-top: 10px;
}

.halfHour {
  width: 100%;
  height: 50px;
  display: flex;
}

.hour {
  width: 20%;
  display: flex;
  justify-content: end;
  position: relative;
  top: -10px;
  padding-right: 10px;
}

.content {
  border-top: 1px solid #000;
  width: 80%;
  display: flex;
  justify-content: center;
  /* border-right: solid 1px #000; */
}

.event {
  position: relative;
  width: 90%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  overflow: auto;
}

.event::-webkit-scrollbar {
  display: none;
}

p {
  margin: 0 5px;
  width: fit-content;
  text-align: center;
}

.name {
  font-weight: bold;
}

#date {
  display: flex;
  justify-content: center;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0 10px;
  display: flex;
  align-items: center;
}

button:hover {
  cursor: pointer;
}

#tools {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  align-items: center;
}

#fullScreen,
#tools button {
  background-color: lightgray;
  border-radius: 5px;
  border: solid 1px rgb(84, 84, 84);
  padding: 10px;
}

#fullScreen img {
  height: 20px;
  margin-right: 5px;
}

#today {
  background-color: lightgray;
  padding: 10px;
  border-radius: 5px;
  border: solid 1px rgb(84, 84, 84);
}

/* #display {
  background-color: green;
} */

h1,
h2 {
  text-align: center;
  margin: 0;
  font-weight: normal;
}

h1 {
  font-size: 1.3em;
  font-weight: 400;
}

h2 {
  font-size: 1.1em;
  font-style: italic;
}

.noLesson {
  background-color: #f0f0f0;
  position: relative;
  width: 90%;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  font-weight: bolder;
  font-size: 3em;
}

.emote {
  font-size: 5em;
}

.noLesson p {
  margin: 25px;
}

#loading {
  display: none;
}

#view {
  display: flex;
  align-items: center;
}

#view button {
  background-color: #f0f0f0;
  padding: 5px;
  border-radius: 5px;
  border: solid 1px rgb(84, 84, 84);
}

#days {
  /* background-color: green; */
  display: flex;
  justify-content: end;
}

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

.underlinedLinks {
  text-decoration: underline;
}

#form,
#loading,
#display {
  margin: 0 8px;
}
