body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6; /* Gris muy claro */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h2 {
    font-weight: 400;
    color: #7f8c8d;
    font-size: 1.2rem;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

p {
    margin-top: 20px;
    padding: 15px 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}