*{
    margin: 0;
    padding: 0;
    font-family: cursive;
    overflow: hidden;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgb(4,9,30,0.7),rgba(4,9,30,0.7)),url(386047.jpg);    background-position: center;    
    background-size: cover;
    position: relative;
}
body {
    font-family: 'Roboto', sans-serif; /* Ustawia nowÄ… czcionkÄ™ na caĹ‚Ä… stronÄ™ */
    margin: 0;
    padding: 0;
}

/* Styl dla logo */
.logo {
    margin: 0 30px; /* Margines po lewej i prawej stronie */
}

.logo img {
    height: 60px; /* ZwiÄ™ksza wysokoĹ›Ä‡ logo */
    width: auto; /* Zachowuje proporcje logo */
}

/* Styl dla paska nawigacyjnego */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center; /* Wycentruje elementy poziomo */
    padding: 30px 20px; /* Dodaje wiÄ™kszy odstÄ™p wokĂłĹ‚ elementĂłw nawigacyjnych */
    background-color: transparent; /* Kolor tĹ‚a nawigacji */
    position: relative;
    top: 20px; /* PrzesuniÄ™cie paska nawigacyjnego w dĂłĹ‚ bez wpĹ‚ywu na tĹ‚o */
}

.nav-links {
    display: flex;
}

.nav-links ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.nav-links ul li {
    list-style: none;
    padding: 12px 16px; /* ZwiÄ™ksza odstÄ™p miÄ™dzy elementami */
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px; /* ZwiÄ™ksza rozmiar czcionki */
    font-weight: 700; /* Zmienia na pogrubionÄ… czcionkÄ™ */
}

.nav-links ul li:after {
    content: '';
    width: 0;
    height: 2px;
    background: #F6CB1E;
    display: block;
    margin: auto;
    transition: width 1s;
}

.nav-links ul li:hover::after {
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding:  12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #fff;
    background: #F6CB1E;
    transition: 1s;
}
.fa-icons {
    position: fixed;
    bottom: 20px;
    right: 80px;
    z-index: 1000;
    display: flex;
    gap: 25px;
}

.fa-icons i {
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    transition: transform 1s;
}

.fa-icons i:hover {
    transform: scale(1.2);
}
.centered-banner {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding-top: 10px;
}

.centered-banner img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 4px solid transparent; /* Pocz�tkowy przezroczysty border */
    padding: 4px;
    box-sizing: border-box;
    animation: borderAnimation 5s linear infinite; /* Animacja dla border */
}

@keyframes borderAnimation {
    0% {
        border-color: transparent transparent transparent transparent;
    }
    10% {
        border-color: yellow transparent transparent transparent;
    }
    25% {
        border-color: yellow yellow transparent transparent;
    }
    50% {
        border-color: yellow yellow yellow transparent;
    }
    75% {
        border-color: yellow yellow yellow yellow;
    }
    90% {
        border-color: transparent yellow yellow yellow;
    }
    100% {
        border-color: transparent transparent transparent transparent;
    }
}
.flag-container {
    position: fixed; /* Ustawienie 'fixed' sprawia, ĹĽe element bÄ™dzie zawsze w okreĹ›lonym miejscu */
    top: 85px; /* OdlegĹ‚oĹ›Ä‡ od gĂłry */
    right: 120px; /* OdlegĹ‚oĹ›Ä‡ od prawej krawÄ™dzi, zmniejszona wartoĹ›Ä‡ przesuwa element w lewo */
    text-align: center; /* WyrĂłwnanie do Ĺ›rodka wewnÄ…trz kontenera */
}

.flag-container i {
    display: block;
    font-size: 24px; /* PowiÄ™ksza ikonÄ™ flagi */
}

.flag-container a {
    text-decoration: none;
    color: #ffffff;
}

.flag-container span {
    display: block;
    color: #ffffff;
    font-size: 18px; /* ZwiÄ™ksza rozmiar czcionki tekstu */
    margin-top: 5px;
}
.fixed-banner {
    position: fixed;
    top: 100px;
    left: -25px;
    width: calc(100% + 20px);
    background-color: transparent;
    padding: 10px;
    text-align: center;
    border-bottom: 0px solid #ccc;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    z-index: 1000;
}