/**
 * POLSKI | POLISH:
 * Wszelkie prawa zastrzeżone © 2025 ShiroeBot.xyz.
 *
 * Niniejszy kod jest własnością ShiroeBot.xyz i stanowi chroniony materiał autorski.
 * Kopiowanie, rozpowszechnianie, modyfikowanie, dekompilacja lub wykorzystywanie jakiejkolwiek części
 * tego kodu w jakiejkolwiek formie, zarówno komercyjnej, jak i niekomercyjnej, bez uprzedniej pisemnej
 * zgody autora jest surowo zabronione.
 *
 * Wszelkie naruszenie powyższych warunków może skutkować odpowiedzialnością cywilną i karną.
 *
 * Jeśli masz pytania dotyczące warunków licencji, skontaktuj się z autorem na serwerze wsparcia.
*/

/**
 * ANGIELSKI | ENGLISH:
 * All rights reserved © 2025 ShiroeBot.xyz.
 *
 * This code is the property of ShiroeBot.xyz and constitutes a protected copyrighted material.
 * Copying, distribution, modification, decompilation, or usage of any part
 * of this code in any form, whether commercial or non-commercial, without prior written
 * consent from the author is strictly prohibited.
 *
 * Any violation of the above terms may result in civil and criminal liability.
 *
 * If you have any questions regarding the licensing terms, please contact the author on the support server.
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #2c2c2c;
    color: #f1f1f1;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    display: flex;
    margin-top: 60px;
    width: 90%;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 40px;
    min-height: calc(100vh - 60px);
    position: relative;
    transition: margin-left 0.3s ease;
}

main {
    flex: 1;
    padding: 20px;
    width: 100%;
    margin-left: 0;
}

h1,
h2,
h3 {
    color: white;
}

ul {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 95%;
        padding: 10px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        flex-direction: column;
        width: 100%;
        padding: 5px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }
}