* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace;
}

body {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(
    125deg,
    #222, #443d53
  );
}

.container {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #c5e7e738;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: inset 0 5px 15px rgba(0, 100, 255, 0.15);
  backdrop-filter: blur(10px);
}

h1 {
  color: #ddd;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 0 2px 15px;
}

.historic-container {
  box-shadow: inset 0 15px 10px rgba(0, 255, 255, 0.1);
  border-top: 3px dashed #04aaa2;
  border-bottom: 3px dashed #04aaa2;
  width: 100%;
  border-radius: 12px;
  padding: 1.25rem;
}

.on {
  color: #00ff00;
  text-shadow: 0 1px 4px;
}

#historic-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

#historic-list li {
  color: aquamarine;
}

#excuseDisplay {
  color: aquamarine;
  font-size: 1.25rem;
  margin: 1rem 0;
}

#generateBtn {
  font-size: 1.75rem;
  padding: 0.75rem 1.75rem;
  margin: 1rem 0;
  border-radius: 18px 8px;
  border: dashed aqua;
  background-color: #22adad4f;
  color: #fff;

  transition: 300ms ease;
}

#generateBtn:disabled {
  cursor: not-allowed;
  border: dashed rgb(0, 146, 146);
  background-color: #0000004f;
}

#generateBtn:hover {
  transform: scale(1.05);
}

#generateBtn:active {
  transform: scale(0.9);
}

#historic-list li:nth-child(1) {
  color: rgb(100, 167, 255);
}

#historic-list li:nth-child(3) {
  color: rgb(100, 167, 255);
}


#historic-list li:nth-child(5) {
  color: rgb(100, 167, 255);
}

#historic-list li:nth-child(7) {
  color: rgb(100, 167, 255);
}