body
{
    background-color: #000000;
    color: #ffffff;
    font-family: "Josefin Sans", sans-serif;
    margin: 0 !important;
}
h1
{
    text-align: center;
}
.container
{
    display:flex;
    height: auto;
}
.tile
{
    width: 240px;
    height: 40px;
    background-color: #87cefa;
    margin: 10px;
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    font-size: 30px;
}
.tile:hover
{
    background-color: #65add8;
    cursor: pointer;
}
.sidebar 
{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 8%;
    background-color: #555;
    padding: 20px;
}
.content {
    flex-grow: 1;
    padding: 20px;
    font-size: 26px;
    background-color: #444;
    border-left: 1px solid #111;
    background-image: url(../assets/LSPD.png);
    background-position: center;
    background-repeat: no-repeat;
}
footer
{
    text-align: center;
    height: 30px;
    font-size: 24px;
    border-bottom: 1px dashed #bbb;
}
.scroll-container {
    height: 1000px;

    overflow-y: scroll;
}

.scroll-container::-webkit-scrollbar {
    width: 10px;
}

.scroll-container::-webkit-scrollbar-track {
    margin-left: 5px;
    background: #666;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #888;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #444;
}

.scroll-container::-webkit-scrollbar-button {
    display: none;
}
@media (min-width: 1920px) {
    .container {
        padding: 10px; /* Dodaj więcej miejsca wokół głównego kontenera */
    }

    .sidebar {
        width: 20%; /* Zmniejsz szerokość sidebaru */
        padding: 30px; /* Więcej miejsca wewnątrz sidebaru */
    }

    .content {
        padding: 40px; /* Zwiększ odstęp wokół treści */
        font-size: 1.6rem; /* Większy rozmiar tekstu dla głównej treści */
    }
}
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Przekształć layout na kolumnowy */
    }

    .sidebar {
        width: 100%; /* Sidebar zajmuje całą szerokość ekranu */
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Dostosowanie przycisków do mniejszych ekranów */
    }

    .content {
        width: 100%; /* Treść zajmuje całą szerokość ekranu */
        padding: 10px;
    }
}
@media (max-width: 480px) {
    .sidebar {
        flex-direction: column; /* Przycisk z powrotem w kolumnach */
        width: 100%;
    }

    .content {
        width: 100%; /* Treść zajmuje całą szerokość */
        padding: 10px;
    }
}
a
{
    text-decoration: none;
    color: #fefefe;
}