/* Ogólne style */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Kontener główny */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Logo */
.logo img {
    height: 150px;
    margin-bottom: 30px;
}

/* Przycisk */
.btn-nav {
    text-decoration: none;
    padding: 10px 20px;
    color: #fff;
    background: linear-gradient(45deg, #f9e71a, #ffae00); /* Gradient na przycisku */
    border-radius: 20px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animacja */
    margin-top: 20px;
}

.btn-nav:hover {
    transform: scale(1.1); /* Powiększenie przycisku */
    box-shadow: 0px 4px 15px rgba(255, 174, 0, 0.5); /* Efekt cienia */
}

.btn-nav:active {
    transform: scale(1); /* Efekt kliknięcia */
}
