@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Arial", sans-serif;
  color: #f4f4f4;
  background-color: #121212;
  line-height: 1.6;
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header {
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, #020024 0%, #032025 51%, #020024 100%);
  filter: drop-shadow(inset 0px 0px 5px 5px white);
  color: white;
  padding: 1.5em 0;
  text-align: center;
  min-height: 50px;
}
header h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}
header nav {
  margin-top: 1em;
}
header nav a {
  color: white;
  text-decoration: none;
  margin: 0 1em;
  font-weight: bold;
}
header nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2em;
  text-align: center;
}
main p {
  font-size: 1.2em;
  margin: 1.5em 0;
  line-height: 1.8;
}
main button {
  background: #4caf50;
  color: white;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}
main button:hover {
  background: rgb(60.5577689243, 139.4422310757, 63.7450199203);
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1em;
  width: 100%;
  min-height: 50px;
  max-height: 120px;
  position: absolute;
  bottom: 0;
}

.index-page {
  padding: 2em;
  background-color: #171717;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 2em auto;
  max-width: 800px;
  text-align: left;
}
.index-page h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}
.index-page p {
  font-size: 1.1em;
  margin-bottom: 1em;
  line-height: 1.8;
}
.index-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.index-page ul li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1.5em;
}
.index-page ul li::before {
  content: "»";
  font-weight: bold;
  color: #4caf50;
  position: absolute;
  left: 0;
  top: 0;
}
.index-page a {
  color: #4caf50;
  text-decoration: none;
  font-weight: bold;
}
.index-page a:hover {
  text-decoration: underline;
}

.dark-mode-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  font-size: 4em;
  line-height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.dark-mode-toggle:hover {
  transform: scale(1.1);
}

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