/* 404 */

.error404 {
    color: #fff;
}

.error404 p {
    color: #fff;
}

.button404 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    background-color: #A85B00;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: visible;
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

a.button404  {
    color: #fff;
    text-decoration: none;
}

.button404:hover {
    background-color: #e07d03;
    box-shadow:
    0 0 0 1px rgba(255,255,255,0.35),
    0 0 12px rgba(224,125,3,0.65),
    0 0 22px rgba(224,125,3,0.45);
}



/* Strona */


h1.entry-title {
    margin: 50px 0;
    text-align: center;
}

.entry-content {
    font-size: 17px;
    letter-spacing: 1px;
}


.entry-content h1 {
    font-size: 55px;
    font-weight: 400;
    margin-bottom: 90px;
}

.entry-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-top: 90px;
}


@media (max-width: 768px) {
    .entry-content h1 {
        font-size: 40px;
        margin-bottom: 60px;
    }

    .entry-content h2 {
        font-size: 28px;
    }
}    