body {
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 2rem;
}
h1, h2 {
    text-align: center;
}
a {
    color: #0ff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.button {
    display: block;
    width: fit-content;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
}
input[type="email"], input[type="text"], textarea {
    background-color: transparent;
    border: 2px solid #0ff;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    padding: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
}
input::placeholder, textarea::placeholder {
    color: #aaa;
}
form button[type="submit"] {
    background-color: #0ff;
    border: none;
    color: #000;
    font-family: 'Courier New', Courier, monospace;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
form button[type="submit"]:hover {
    background-color: #00cccc;
}
hr {
    border: none;
    border-top: 1px solid #555;
    margin: 2rem 0;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 1rem;
  }

  .button, input, textarea, form, .container, .mobile-container {
    width: 100% !important;
    max-width: 100vw;
    box-sizing: border-box;
  }

  h1, h2, p {
    text-align: left;
    padding: 0 1rem;
  }

  html, body {
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  html, body {
    font-size: 16px;
    overflow-x: hidden;
    padding: 1rem;
  }

  input, textarea, form, .button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .button {
    text-align: center;
  }

  h1, h2, p {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}