/* General Styles */
* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #FFF0F5; /* Lavender Blush */
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;  
  height: 100vh;
  padding: 20px;
  padding-top: 60px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  font-size: 2.5rem;
  color: #D87093; /* Pale Violet Red */
  font-family: 'Great Vibes', cursive;
}

/* Main Content */
main {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.snippet {
  background-color: #FFF5EE; /* Seashell */
  border: 2px solid #F4A7B9; /* Light Pink */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.snippet h2 {
  color: #DB7093; /* Pale Violet Red */
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.snippet p {
  font-size: 1.2rem;
  color: #555;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
}

footer p {
  color: #DB7093;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 600px) {
  main {
    padding: 10px;
  }

  .snippet h2 {
    font-size: 1.5rem;
  }

  .snippet p {
    font-size: 1rem;
  }
}
