/* Zaloba Filtr 3000 */
/* body,
html {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
}
a:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    filter: grayscale(0%);
    color: #3c6bc6;
} */
/* Zaloba Filtr 3000 koniec */

body {
    font-family: "Times New Roman", Times, serif;
    background-image: url("/obrazki/tlo.jpg");
}

.tytul-gradient {
    background: rgb(255, 255, 255);
    background: linear-gradient(
        0deg,
        rgb(101, 160, 208) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

.gradient-2 {
    background: rgb(255, 255, 255);
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 1) 0%,
        rgb(101, 160, 208) 100%
    );
}

.tlo {
    background-color: black;
    background-image: url(/obrazki/STRONA_GLOWNA2.jpg);
    background-size: cover;
    width: 100%;
    aspect-ratio: 999 / 429;
}

.art-gradient {
    background: rgb(255, 255, 255);
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 1) 0%,
        rgb(215, 215, 215) 100%
    );
}

.yellow-gradient {
    background: rgb(255, 255, 255);
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 1) 0%,
        rgb(252, 198, 0) 100%
    );
}

.przycisk {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: rgb(75, 132, 239) 1px solid;
    border-radius: 10px;
    color: black;
    background: rgb(255, 255, 255);
    background: linear-gradient(
        0deg,
        rgb(101, 160, 208) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

.przycisk:hover {
    background: rgb(255, 255, 255);
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 1) 0%,
        rgb(101, 160, 208) 100%
    );
}

.wszystko {
    max-width: 960px;
}

.card {
    margin-bottom: 10px;
}

.marquee {
    line-height: 25px;
    color: rgb(0, 0, 0);
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    font-weight: bold;
}
.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 45s linear infinite;
}
@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

.border-info {
    border-color: rgb(101, 160, 208) !important;
}
