/* Importa una fuente manuscrita desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

body {
    background-image: url('https://www.transparenttextures.com/patterns/flowertrail.png');
    background-color: #fff0f5;
    font-family: 'Indie Flower', cursive;
    margin: 40px;
    background-repeat: repeat;
    background-size: auto;
}

h1 {
    color: #d36da8;
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px #fff0f5;
}

p {
    color: #555;
    font-size: 1.2em;
    line-height: 1.8;
}

ul {
    background-color: #fff0f5;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.05em;
    color: #6b4c6b;
    box-shadow: 0px 4px 8px rgba(211, 109, 168, 0.2);
}

/* Botones estilo cute */
button, .btn {
    background-color: #ffb6c1;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-family: 'Comic Sans MS', 'Segoe UI', cursive;
}

button:hover, .btn:hover {
    background-color: #ff69b4;
    transform: scale(1.05);
}

/* Enlaces con encanto */
a {
    color: #d36da8;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #ff1493;
    text-decoration: underline;
}
