* {
    box-sizing:border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

body {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  font-family: 'Orbitron', sans-serif;
  color: #cccccc;
  margin: 0;
  padding: 0;
}

#container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  border: 2px solid #00fff7;
  box-shadow: 0 0 20px #00fff7;
  background-color: #121212;
}

h1, h2 {
  color: #fcee09;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #ff003c;
  padding-bottom: 6px;
  margin-top: 40px;
}

p {
  line-height: 1.6;
  font-size: 1rem;
}

.response {
  background-color: rgba(255, 0, 60, 0.08);
  padding: 20px;
  border: 1px solid #ff003c;
  margin: 20px 0;
  border-radius: 6px;
  box-shadow: 0 0 10px #ff003c44;
}

.response-image {
  width: 100%;
  max-width: 300px;
  display: block;
  margin-top: 10px;
  border: 2px solid #00fff7;
  box-shadow: 0 0 10px #00fff7;
}

footer {
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
  color: #999;
  border-top: 2px solid #ff003c;
}

hr {
  border: none;
  height: 1px;
  background-color: #00fff7;
  box-shadow: 0 0 10px #00fff7;
}


button:hover {
  box-shadow: 0 0 12px #fcee09, 0 0 20px #ff003c;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1px,
    rgba(0, 0, 0, 0.1) 2px
  );
  pointer-events: none;
  z-index: 999;
}