* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: linear-gradient(135deg, #f5e7e0 0%, #f9f2f4 100%) fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 1rem;
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
}

.title {
  margin-top: 1rem;
  color: #6a1b9a;
  font-family: "Bangers", cursive;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), 0 0 10px rgba(106, 27, 154, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.subtitle {
  margin: 1rem 0;
  color: #e91e63;
  font-family: "Pacifico", cursive;
  font-size: 1.5rem;
  font-weight: 400;
}

.image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1.5rem;
}

.image img {
  max-width: 100%;
  width: 80vw;
  height: auto;
}

@media (min-width: 768px) {
  .container {
    padding: 2rem;
    max-width: 800px;
  }

  .title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.8rem;
  }

  .image img {
    width: 500px;
  }
}