@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&family=Permanent+Marker&display=swap');

body {
  background: linear-gradient(to bottom, #fdfcf8, #f4f2ec);
  font-family: 'Patrick Hand', cursive;
  margin: 0;
  padding: 0;
  color: #222;
}
.poster-header {
  background: #000;
  color: white;
  text-align: center;
  padding: 20px;
  border-bottom: 6px solid #44bdf1;
}

.main-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 48px;
  color: #7bdfff;
  margin: 0;
  text-shadow: 3px 3px #000;
  letter-spacing: 2px;
}

.tagline {
  margin: 8px 0 0;
  font-size: 18px;
  color: #eaeaea;
}


.paper {
  background: #fffef8;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 10px;
}

.subtitle {
  text-align: center;
  font-family: 'Permanent Marker', cursive;
  font-size: 26px;
  color: #2c8cc9;
  margin-bottom: 10px;
}

.instructions {
  text-align: center;
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
}


.scribble-list {
  list-style-type: none;
  padding: 0;
}

.scribble-item {
  margin: 10px 0;
  font-size: 20px;
  padding: 6px 12px;
  background: #e8f6ff;
  border-left: 4px solid #44bdf1;
  box-shadow: 2px 2px 0 #000;
  transform: rotate(var(--angle, 0deg));
  transition: 0.2s;
}

.scribble-item:hover {
  transform: rotate(1deg) scale(1.05);
  background: #dff3ff;
}

.scribble-item:nth-child(odd) {
  --angle: -1deg;
}

.scribble-item:nth-child(even) {
  --angle: 1deg;
}


.scribble-item a {
  text-decoration: none;
  color: #004b8e;
}

.scribble-item a:hover {
  color: #1a85d6;
  text-decoration: underline;
}

.search-container {
  margin: 6px 0 18px 0;
  padding: 0;
}

.search-box {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  font-family: 'Patrick Hand', cursive;
  border: 2px solid #44bdf1;
  border-radius: 6px;
  background: #f0fafb;
  box-sizing: border-box;
  transition: 0.2s;
}

.search-box:focus {
  outline: none;
  border-color: #1a85d6;
  background: #e8f6ff;
  box-shadow: 0 0 8px rgba(68, 189, 241, 0.3);
}

.search-box::placeholder {
  color: #999;
}

.search-results {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: #44bdf1;
  font-weight: bold;
}

.footer {
  text-align: center;
  margin-bottom: 30px;
  font-size: 15px;
  color: #555;
}
