*{
    font-family: 'Nunito', Arial, sans-serif;
    list-style-type: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}
body{
    background-image: url("/assets/background_image.png");
    height: 100vh;
}
header{
    position: absolute;
    top: 10px;
    width: 100%;
}
a{
    border-radius: 5px;
    border: none;
    font-weight: bolder;
    color: #fff;
    margin: 10px 15px 5px 5px;
    padding: 10px;
    margin-top: 10px;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out, border 0.15s ease-in-out;
    backdrop-filter: blur(2px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 20px;
}
a:hover{
    background-color: rgba(255, 255, 255, 0.200);
    border-bottom: 5px solid #fff;
    border-radius: 5px;
}
#current{
    border-bottom: 5px solid #fff;
    border-radius: 5px;
}
.nav-toggle{
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}
nav{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
nav.nav-hidden{
    transform: translateX(100%);
    background-color: transparent;
}
nav.nav-visible{
    transform: translateX(0);
}
.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 4;
}
nav.nav-visible + .overlay{
    display: block;
}
main{
    position: absolute;
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    max-height: 500px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    font-size: 18px;
}
h3{
    margin: 5px;
}
.documents_files{
    all: unset;
    padding: 5px;
    transition: border 0.3s ease-in-out;
}
.documents_files:hover{
    all: unset;
    cursor: pointer;
    border-bottom: 1px solid white;
}
.table_container{
    width: 100%;
    padding: 10px;
}
.table_business{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.td_business{
    padding: 10px;
}
.td_business:first-child{
    text-align: left;
    width: 50%;
}
.td_business:last-child{
    text-align: right;
    width: 50%;
}
.gallery{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}
.main_dorota{
    min-height: 300px;
}
.gallery img{
    width: 150px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: transform 0.2s, border-color 0.2s;
}
.gallery img:hover{
    transform: scale(1.1);
    border-color: #555;
}
.photo_about{
    margin-left: 20px;
}
.modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal img{
    max-width: 90%;
    max-height: 90%;
    border: 5px solid white;
    border-radius: 10px;
}
.modal:target{
    display: flex;
}
.close{
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 50%;
}
.close:hover{
    background: rgba(255, 255, 255, 0.5);
    color: black;
}
footer{
    position: fixed;
    bottom: 0px;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px;
    backdrop-filter: blur(2px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.2);
}
&::-webkit-scrollbar {
    display: none;
}
@media (max-width: 1366px){
    main{
        max-height: 50vh;
    }
}
@media (max-width: 768px){
    .nav-toggle{
        display: block;
    }
    nav{
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 0;
        backdrop-filter: blur(2px);
        width: 70%;
        height: calc(100% - 50px);
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        z-index: 5;
    }
    .gallery{
        flex-direction: column;
    }
    nav a{
        margin: 10px 0;
    }
    h3{
        margin-top: 10px;
    }
}