.omnie {
    max-width: 900px;
    margin: 70px auto;
    padding: 45px 50px;
    border-radius: 20px;
    animation: omnieWejscie 0.8s ease-out both;
}

.omnie:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.10);
}

.omnie h1 {
    margin: 0 0 20px;

    font-size: 32px;
    font-weight: 700;
    color: #222;

    letter-spacing: -0.5px;
}

.omnie p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
    color: #666;

    max-width: 800px;
}

@keyframes omnieWejscie {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Telefon */
@media (max-width: 600px) {

    .omnie {
        margin: 40px 15px;
        padding: 30px 25px;
        border-radius: 16px;
    }

    .omnie h1 {
        font-size: 26px;
    }

    .omnie p {
        font-size: 15px;
        line-height: 1.7;
    }
}