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

body {
    background: linear-gradient(45deg, #ff6b9d 0%, #c06c84 25%, #6c5ce7 50%, #00b894 75%, #feca57 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    color: #2d3436;
    min-height: 100vh;
    padding: 20px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

header {
    background: rgba(255, 255, 255, 0.95);
    border: 5px solid #2d3436;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

h1 {
    font-size: 3em;
    color: #6c5ce7;
    text-shadow: 3px 3px 0 #ff6b9d, 6px 6px 0 #feca57;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tagline {
    font-size: 1.2em;
    color: #636e72;
    font-style: italic;
}

nav {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #2d3436;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

nav a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #6c5ce7, #ff6b9d);
    color: white;
    text-decoration: none;
    border: 3px solid #2d3436;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

nav a:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ff6b9d, #feca57);
}

.content-box {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #2d3436;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.content-box h2 {
    color: #6c5ce7;
    font-size: 2em;
    margin-bottom: 15px;
    border-bottom: 3px dotted #ff6b9d;
    padding-bottom: 10px;
}

.content-box p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #2d3436;
}

.visitor-counter {
    background: #2d3436;
    color: #00ff00;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    display: inline-block;
    margin: 15px 0;
    border: 3px solid #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

footer {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #2d3436;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.sparkle {
    display: inline-block;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

@media (max-width: 600px) {
    h1 { font-size: 2em; }
    nav ul { flex-direction: column; }
}


.text-with-image {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.text-with-image img {
  width: 30vw;
  max-width: 300px;
  height: auto;
}

@media (max-width: 700px) {
  .text-with-image {
    flex-direction: column;
  }

  .text-with-image img {
    width: 100%;
    max-width: none;
  }
}


blockquote {
  margin: 1.5em 0;
  padding: 1em 1.25em;
  border-left: 4px solid #aaa;
  background: #f7f9ff;
  color: #333;
  font-style: italic;
}

blockquote p {
  margin: 0.5em 0;
}
