/* elijahbush.com – temporary under-renovation stylesheet */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
}

.container {
  max-width: 720px;
  width: 90%;
  text-align: center;
  padding: 2rem 1rem;
}

header {
  margin-bottom: 1.5rem;
}

.logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  border: 0;
}

.banner {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border: 0;
}

.announcement {
  background: #111111;
  border: 2px solid #ff0000;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.announcement p {
  font-size: 1.15rem;
  color: #ff0000;
  font-weight: bold;
}

.project {
  margin: 2.5rem 0;
}

.project p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 0.4rem;
}

.project-name {
  font-size: 1.8rem !important;
  color: #00ff99 !important;
  letter-spacing: 0.05em;
  text-shadow: 0 0 8px rgba(0, 255, 153, 0.4);
}

footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #666666;
  font-family: Arial, Helvetica, sans-serif;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .announcement p {
    font-size: 1rem;
  }

  .project-name {
    font-size: 1.4rem !important;
  }
}
