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

html, body {
  width: 100%;
  height: 100%;
}

main {
  width: 100%;
  height: 100%;
  background-color: black;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
main h1 {
  color: rgb(76, 185, 228);
}
main h2 {
  font-weight: 400;
  color: #00ff88;
  text-shadow: 0 0 2px #00ff88, 0 0 6px #00ff88;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}/*# sourceMappingURL=style.css.map */