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

html {
  background: #bc4b51;
}

html::before,
html::after {
  position: absolute;
  inset: 0;
  background: conic-gradient(#5b8e7d 50%, #8cb369 0%, #0000);
  filter: url(#rays);
  content: "";
}

html::after {
  background: conic-gradient(#f4a259, #0000 50%);
}

body {
  background: rgb(59, 59, 59);
  color: white;
  font-family: "Chivo Mono", monospace;
  line-height: 1.6;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.container {
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

h1 {
  margin-bottom: 2rem;
  letter-spacing: 0.1rem;
  font-family: "Chivo Mono", monospace;
  /* text-decoration: underline; */
  font-size: 7rem;
  line-height: 0.5;
}

.header-subtext {
  font-size: 15rem;
  font-style: italic;
  font-family: 'Ceviche One', cursive;
  color: rgb(230, 44, 44);
  text-shadow: 5px 0px 0px white;
}

.terminal-text {
  margin: 2rem 0;
  text-align: left;
  margin-bottom: 3rem;
}

.terminal-text p {
  margin: 1rem 0;
  opacity: 0.8;
}

.email-form {
  margin-top: 3rem;
  padding: 2rem;
  border: 2px solid #ffffff;
  border-radius: 4px;
}

.email-form p {
  margin-bottom: 1rem;
  text-align: left;
}

input[type="email"] {
  background: #000;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-family: "Space Mono", monospace;
  width: 300px;
  margin-right: 1rem;
  outline: none;
}

button {
  background: #ffffff;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  font-family: "Space Mono", monospace;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

button:hover {
  background: #000;
  color: #ffffff;
  border: 1px solid #ffffff;
}

::placeholder {
  color: #ffffff;
  opacity: 0.5;
}
