@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Open+Sans&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(to bottom right, #ffe0ec, #fffaf0);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  padding: 2rem;
  max-width: 600px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: #d63384;
}

p {
  font-size: 1.2rem;
  color: #444;
}

img {
  margin-top: 1rem;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
