body {
    background: url('https://steamuserimages-a.akamaihd.net/ugc/792008966805077463/48ADB82B09695DC7E65D945138931A39C0CDB950/') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.logo {
    width: 150px; /* Zwiększone z 50px */
    transition: transform 0.3s, filter 0.3s;
}

.logo:hover {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.discord {
    position: relative;
}

.discord img {
    width: 80px; /* Zwiększone z 30px */
    cursor: pointer;
    transition: transform 0.3s, filter 0.3s;
}
.logo:hover, 
.discord img:hover {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.discord-text {
    position: absolute;
    top: 35px;
    left: 0;
    color: white;
    background: transparent;
    display: none;
    font-family: 'Courier New', Courier, monospace;
}

.container {
    margin-top: 100px;
    animation: fadeInDown 1s ease-in-out;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
    transition: transform 0.3s, filter 0.3s;
}

h1:hover {
    transform: scale(1.1);
    filter: brightness(0.8);
}

h2 {
    font-size: 2em;
    text-decoration: underline;
    color: blue;
    transition: transform 0.3s, filter 0.3s;
}

h2:hover {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.button {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: blue;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
}

.button:hover {
    background-color: darkblue;
    transform: scale(1.05);
}

.social-circles {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    margin: 0 10px;
    overflow: hidden;
    animation: moveCircles 10s linear infinite;
}

.circle img {
    width: 100%;
    height: 100%;
}

hr {
    width: 80%;
    margin: 40px auto;
    border: 1px solid white;
}

.faq {
    margin: 40px 0;
    color: gray;
}

.sections {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.sections a {
    color: gray;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.sections a img.icon {
    width: 20px; /* Rozmiar ikony, możesz dostosować */
    height: 20px; /* Rozmiar ikony, możesz dostosować */
    margin-right: 8px; /* Odstęp między ikoną a tekstem */
}

.sections a:hover {
    background-color: blue;
    color: white;
}


footer {
    margin-top: 50px;
    font-size: 0.8em;
    color: gray;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes moveCircles {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.form-container {
    background-color: white;
    color: black;
    padding: 30px;
    border-radius: 10px;
    width: 50%;
    margin: 100px auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-container h1 {
    margin-bottom: 20px;
    font-size: 2em;
    color: black;
}

.form-container label {
    display: block;
    margin-top: 10px;
    font-size: 1.2em;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container .button {
    background-color: blue;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.form-container .button:hover {
    background-color: darkblue;
    transform: scale(1.05);
}
/* Stylizacja paska przewijania w przeglądarkach WebKit */
::-webkit-scrollbar {
    width: 12px; /* Szerokość paska przewijania */
}

/* Tło paska przewijania */
::-webkit-scrollbar-track {
    background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRo3SHfcDzd6QN6RKUAYenSYhaTY3kOesR3IB63IJS2naiI9ykoKd_jsOz_qTU56Tr1mA&usqp=CAU') no-repeat center center;
    background-size: cover; /* Dopasowuje obrazek do rozmiaru paska */
    border-radius: 10px;
}

/* Suwak paska przewijania */
::-webkit-scrollbar-thumb {
    background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRo3SHfcDzd6QN6RKUAYenSYhaTY3kOesR3IB63IJS2naiI9ykoKd_jsOz_qTU56Tr1mA&usqp=CAU') no-repeat center center;
    background-size: cover; /* Dopasowuje obrazek do rozmiaru suwaka */
    border-radius: 10px;
}

/* Suwak po najechaniu */
::-webkit-scrollbar-thumb:hover {
    background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRo3SHfcDzd6QN6RKUAYenSYhaTY3kOesR3IB63IJS2naiI9ykoKd_jsOz_qTU56Tr1mA&usqp=CAU') no-repeat center center;
    background-size: cover;
}

/* Stylizacja paska przewijania w Firefoxie */
body {
    scrollbar-width: thin; /* Możliwe wartości: auto, thin, none */
    scrollbar-color: #888 #f1f1f1; /* Kolor suwaka i tła suwaka */
}

/* Stylizacja paska przewijania dla Internet Explorer (ogólna) */
body {
    overflow-y: scroll; /* Wymusza wyświetlanie paska przewijania */
}
/* Animacja tekstu typu "typer" */
.typing-text {
    font-size: 16px;
    color: white;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Ukrywa tekst, który nie jest jeszcze wyświetlany */
    white-space: nowrap; /* Zapobiega łamaniu linii */
    border-right: 2px solid white; /* Kreska miga na końcu tekstu */
    width: 0; /* Początkowa szerokość na 0, aby animacja była widoczna */
    animation: typing 4s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: white;
    }
}
/* Stylizacja stopki copyrightu */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px 0;
    opacity: 0; /* Początkowo niewidoczny */
    transition: opacity 0.5s ease-in-out;
}

/* Efekt pojawiania się i znikania */
.show-footer {
    opacity: 1; /* Widoczny */
}
