body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #e76fd3;
    margin: 0;
    padding: 40px;
    color: #f8f4f4;
}


.contenedor {
    max-width: 900px;
    margin: auto;
    background: rgb(66, 4, 58);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


h1 {
    color: #55063d;
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    color: #e2dae2;
    text-align: center;
    margin-bottom: 25px;
}


hr {
    border: none;
    height: 3px;
    background: #831c5c;
    margin: 20px 0;
}

p {
    font-size: 18px;
    line-height: 1.8;
    background-color: #ff1897;
    padding: 15px;
    border-left: 5px solid #b11871;
    border-radius: 8px;
    margin-bottom: 15px;
}


p:hover {
    background-color: #890f94;
    transform: translateX(5px);
    transition: 0.3s;
}