body {
    background-color: #f7d9e9; /* Light pink background */
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffffff; /* White card background */
    border-radius: 15px;
    padding: 30px 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 90%;
}

h1 {
    color: #a83a99; /* Darker pink for the title */
    font-size: 2.5em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 img {
    height: 30px; /* Adjust the size of the butterfly/bow images */
    margin: 0 10px;
}

p {
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
}

hr {
    border: none;
    border-top: 2px dashed #ffb6c1; /* Pink dashed line */
    margin: 30px 0;
}

h2 {
    color: #a83a99; /* Darker pink for 'Mis Páginas Web' */
    font-size: 1.8em;
    margin-bottom: 20px;
}

.nav-links a {
    color: #6a0572; /* Purple for links */
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 15px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: #ffe0f0; /* Lighter pink on hover */
}