body {
  background: #000;
  color: #00ff00;
  font-family: monospace;
  margin: 0;
  text-align: center;
}

.logo {
  font-size: 2.5rem;
  margin-top: 20px;
  letter-spacing: 4px;
}

.logo span {
  text-shadow: 0 0 8px #00ff00;
}

.tagline {
  opacity: 0.5;
  margin-bottom: 20px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}

a {
  color: #00ff00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.gallery {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  width: 90%;
  max-width: 900px;
  border: 1px solid #00ff00;
  padding: 10px;
}

iframe {
  width: 100%;
  height: 450px;
  border: none;
  background: #111;
}

button {
  background: #000;
  color: #00ff00;
  border: 1px solid #00ff00;
  padding: 6px 12px;
  cursor: pointer;
  margin: 5px;
}

button:hover {
  background: #00ff00;
  color: #000;
}

.submit-box {
  margin-top: 25vh;
}

input {
  background: #000;
  color: #00ff00;
  border: 1px solid #00ff00;
  padding: 10px;
  width: 300px;
}

.feed-body {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.feed-card {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

textarea {
  background: #000;
  color: #00ff00;
  border: 1px solid #00ff00;
  padding: 10px;
  width: 300px;
  height: 80px;
  margin-top: 5px;
}