body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ff1e1e;
  color: #fff;
  text-align: center;
}

.marquee {
  background: yellow;
  color: black;
  font-weight: 900;
  padding: 10px;
  font-size: 1.1rem;
}

main {
  padding: 40px 20px;
}

.scream {
  font-size: 4rem;
  line-height: 1;
  margin: 40px 0;
  text-transform: none;
  text-shadow: 5px 5px black;
}

.sub {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.actions a,
.actions button {
  background: black;
  color: yellow;
  font-size: 1.1rem;
  padding: 14px 20px;
  border: 4px solid yellow;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
}

#contract {
  margin-top: 10px;
  font-size: 0.8rem;
  word-break: break-all;
}

hr {
  margin: 50px auto;
  width: 80%;
  border: 3px dashed yellow;
}

h2, h3 {
  text-shadow: 3px 3px black;
}

.caption {
  font-size: 1rem;
  margin-top: 12px;
}

.footer-text {
  font-size: 0.95rem;
}

footer {
  margin-top: 40px;
  padding: 20px;
  font-size: 0.8rem;
  background: black;
  color: yellow;
}

#toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: yellow;
  color: black;
  font-weight: 900;
  padding: 10px 18px;
  opacity: 0;
}

#toast.show {
  opacity: 1;
}
