body {
  font-family: "Inter", sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

.hidden {
  display: none;
}

/* Overlay */
#overlay {
  text-align: center;
}

#overlay input {
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
}

#overlay button {
  padding: 10px 20px;
  background: red;
  border: none;
  color: white;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

#overlay button:hover {
  background: #ff5050;
}

/* Feed */
.title {
  margin-top: 20px;
  text-align: center;
}

.feed-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.post {
  background: #1a1a1a;
  border: 1px solid #ff0000;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-size: 1.2em;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.post:hover {
  transform: scale(1.05);
  background: rgba(255, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

/* Reflection boxes */
.reflection {
  margin: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
  animation: fadeIn 1s ease forwards;
}

h3 {
  color: #ff3333;
}
/*https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/At-rules/@keyframes*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
