body {
  background-color: #111212;
  color: #f5f5f5;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 0;
}

.container {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.logo {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  background-color: #d6ff00;
  color: black;
  padding: 0px 0px;
  font-weight: bold;
  border-radius: 20px;
  font-size: 1.2em;
  margin-bottom: 40px;
  padding-bottom: -10px;
}

.content {
  line-height: 1.6;
}

.content p {
  margin-bottom: 1.2em;
}

.hashtags {
  margin: 1em 0;
  color: #aaa;
}

.signup {
  margin: 2em 0;
}

input[type="email"] {
  background-color: #313131;
  color: #f5f5f5;
  border: 1px solid #444;
  padding: 8px;
  border-radius: 4px;
  max-width: 180px;
}

button {
  background-color: #d6ff00;
  color: black;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.footer {
  margin-top: 30px;
  color: #bbb;
}

.footer a {
  margin-right: 20px;
  color: inherit;
  text-decoration: none;
}

a {
  text-decoration: none;
  color: inherit;
  position: relative;
}

a:hover::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #d6ff00;
  border-radius: 1px;
}

.story-driven {
  color: #FFF;
  text-align: left;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.96px;
}

@media (max-width: 600px) {
  .signup form {
    display: flex;
    flex-direction: column;
  }

  input[type="email"] {
    margin-bottom: 10px;
    width: 100%;
  }

  button {
    width: 100%;
  }
}