/* Stylizacja strony */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Nagłówek z logo */
header {
    background-color: #000000; /* Kolor tła */
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 300px; /* Ustaw szerokość logo */
    height: auto;
    cursor: pointer;
}


/* Główna sekcja z tekstem */
main {
    flex-grow: 1; /* Sprawia, że ta sekcja wypełnia pozostałą część ekranu */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f4f4f4; /* Kolor tła */
}

.center-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}



/* Stopka */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}