*{
    margin: 0;
    padding: 0;
    font-family: cursive;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgb(218, 167, 29),rgba(4,9,30,0.7)),url(386047.jpg);    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 8%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 180px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    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: 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: 18px;
    color: #ffffff;
    cursor: pointer;
    transition: transform 1s;
}

.fa-icons i:hover {
    transform: scale(1.2);
}
.ramka {
    background-color: rgba(0, 0, 0, 0.5);
    width: 60%;
    max-width: 1000px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    text-align: center;
    color: white;
    margin: 40px auto;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 5px solid transparent;
    animation: glowing-border 2s infinite;
}

.button-container {
    margin: 20px 0; /* Przerwa nad i pod przyciskiem */
}

.hero-btn {
    display: inline-block; /* Wyœwietlany jako blok wewnêtrzny */
    padding: 10px 20px;
    color: white;
    background-color: #c2c455;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.hero-btn:hover {
    background-color: #a9aa40;
}

@keyframes glowing-border {
    0% {
        border-color: rgba(194, 196, 85, 0.5);
        box-shadow: 0 0 10px rgba(194, 196, 85, 0.5);
    }
    50% {
        border-color: rgba(194, 196, 85, 1);
        box-shadow: 0 0 20px rgba(194, 196, 85, 1);
    }
    100% {
        border-color: rgba(194, 196, 85, 0.5);
        box-shadow: 0 0 10px rgba(194, 196, 85, 0.5);
    }
}
