body {
    background-color: #f3e5f5; /* Jasny fioletowy */
    font-family: Arial, sans-serif; /* Neutralna czcionka */
    text-align: center;
    color: black;
    
}

h1 {
    color: #9c27b0; /* Mocniejszy fiolet dla nagłówków */
}

a {
    color: #ba68c8;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #8e24aa;
    text-decoration: underline;
}

button {
    background-color: #ba68c8; /* Fioletowy przycisk */
    color: black; /* Biały tekst */
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: #9c27b0;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}




