/* --- GLOBAL STYLES --- */
body {
  background-color: #fff8f0;
  color: #3b2f2f;
  font-family: "Verdana", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-image: url('https://www.transparenttextures.com/patterns/cream-pixels.png'); /* optional cozy bg texture */
}

.container {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  border: 3px double #cfa;
  background-color: #fffff8;
  box-shadow: 4px 4px 0 #cfa;
}

/* --- HEADINGS --- */
h1, h2, h3 {
  font-family: "Courier New", monospace;
  color: #6a4e42;
  text-align: center;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
  text-shadow: 1px 1px #fff;
}

h2 {
  font-size: 24px;
  margin-top: 30px;
}

/* --- LINKS --- */
a {
  color: #d06079;
  text-decoration: underline;
}

a:hover {
  background-color: #ffe0e9;
  color: #a03858;
}

/* --- DECORATIVE --- */
hr {
  border: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #dcb,
    #dcb 10px,
    transparent 10px,
    transparent 20px
  );
  margin: 30px 0;
}

.sticker {
  display: block;
  margin: 20px auto;
  max-width: 100px;
}

/* --- BUTTON STYLE --- */
button {
  background-color: #fdd;
  border: 2px solid #c99;
  padding: 8px 16px;
  font-family: "Courier New", monospace;
  cursor: pointer;
  box-shadow: 2px 2px #c99;
  transition: 0.2s;
}

button:hover {
  background-color: #ffe6e6;
  box-shadow: none;
  transform: translate(2px, 2px);
}

/* --- FUN EXTRAS --- */
.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

.marquee {
  font-family: "Comic Sans MS", cursive;
  background-color: #fce;
  padding: 8px;
  color: #a03;
  font-
