body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 1.2em;
    color: #666;
}

.animation {
    margin-top: 30px;
	
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
margin-right: auto;
	margin-left:auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


a.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #ffffff; /* Biały tekst */
    background-color: #e63946; /* Mocny czerwony kolor */
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s; /* Płynne animacje */
}

a.btn:hover {
    background-color: #d62828; /* Ciemniejszy czerwony przy najechaniu */
    transform: scale(1.05); /* Subtelne powiększenie przy najechaniu */
    text-decoration: none; /* Zapobiega podkreśleniu przy najechaniu */
}

a.btn:active {
    background-color: #b71d24; /* Jeszcze ciemniejszy czerwony przy kliknięciu */
    transform: scale(0.95); /* Subtelne zmniejszenie przy kliknięciu */
}
