/* Base Layout */
body {
  background-color: #fef0e0;
  font-family: 'Comic Sans MS', 'Comic Neue', cursive, sans-serif;
  text-align: center;
  color: #800000;
  margin: 0;
  padding-bottom: 60px;
}

/* Shared layout for major sections */
.intro,
.contact,
.legal {
  max-width: 700px;
  margin: 30px auto;
  box-sizing: border-box;
}

/* Image styling */
.intro img {
  width: 300px;
  border: 5px solid #ff69b4;
}

/* Contact block */
.contact {
  background-color: #fffacd;
  padding: 10px;
  border: 3px double #ffa07a;
  text-align: center;
}

/* Legal disclaimer block */
.legal {
  background-color: #fffacd;
  border: 2px solid #ffa07a;
  padding: 20px;
  text-align: left;
  font-size: 0.9em;
  color: #6b4c3b;
  line-height: 1.6;
}

.legal h2 {
  color: #800000;
  text-align: center;
}

/* Scrolling banner (fake marquee) */
.scrolling-banner {
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  border-top: 2px dashed #ff69b4;
  border-bottom: 2px dashed #ff69b4;
  padding: 10px 0;
  margin-bottom: 10px;
}

.scrolling-banner span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-stutter 16s steps(30, end) infinite;
  font-size: 24px;
  color: #ff4500;
}

@keyframes marquee-stutter {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
