body {
  margin: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #ffe6f0;
  color: #5c2a4a;
}

.fondo {
  background-image: url('https://www.shutterstock.com/image-vector/vet-cartoon-elements-girly-background-pattern-2358428365');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contenido {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

h1 {
  font-size: 3em;
  color: #d63384;
}

.boton {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ff69b4;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton:hover {
  background-color: #ff1493;
}

.menu {
  background-color: #fff0f5;
  padding: 20px;
  text-align: center;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu li {
  display: inline-block;
  margin: 0 15px;
}

.menu a {
  text-decoration: none;
  color: #c71585;
  font-weight: bold;
  font-size: 1.2em;
}
