/* General Styles */
html,
body {
  height: 100%;
  width: 100%;
  background-color: #dedede;
  color: black;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  transition: background-color 0.5s ease, color 0.5s;
}

header {
  width: 100%;
  background-color: #c8c8c8;
  transition: background-color 0.5s ease, color 0.5s ease;
  padding: 10px 0;
  position: fixed;
  top: 0;
  z-index: 10;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s ease, color 0.5s ease;
}

#darkModeToggleBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.divider {
  height: 2px;
  background-color: #b0b0b0;
  width: 100%;
  position: fixed;
  top: 70px;
  z-index: 9;
}

main {
  padding-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

main .content {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 100%;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.divider {
  z-index: 100;
  background-color: #646464;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.darkLightText {
  color: #000000;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.orbitron {
  font-family: 'Orbitron', sans-serif;
}

.cinzel {
  font-family: 'Cinzel Decorative', cursive;
}

.hidden {
  display: none;
}

.center {
  align-self: center;
  text-align: center;
  align-items: center;
  vertical-align: middle;
}

textarea {
  resize: none;
  width: 90%;
}

/* Dark Mode Styles */
html.dark-mode,
body.dark-mode {
  background-color: #1e1e1e;
  color: white;
}

header.dark-mode {
  background-color: #282828;
  color: white;
}

main .content.dark-mode {
  background-color: #323232;
  color: white;
}

.divider.dark-mode {
  background-color: #c8c8c8;
}

.darkLightText.dark-mode {
  color: #fff;
}

html.dark-mode textarea,
body.dark-mode textarea {
  color: white;
}

/* Add other styles here */
@keyframes glowing {
  0% {
    text-shadow: 0 0 5px #ffff4b;
    color: #000000
  }

  50% {
    text-shadow: 0 0 20px #ffff00;
    color: #ffffff
  }

  100% {
    text-shadow: 0 0 5px #ffff4b;
    color: #000000
  }
}

.glowing {
  animation: glowing 2s infinite;
}