html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-wrap: wrap;
    font-family: Calibri, sans-serif;
    color: #f6f5f5;
    background: linear-gradient(to bottom, rgb(3 3 3), rgb(76 76 76), rgb(3 3 3));
}

#main-photo-section {
    min-height: 500px;
}

#main-photo {
    display: block;
    position: relative;
    background: url("img/Polish_20250519_074212945.jpg") no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100%;
}


#title {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#title h3 {
    padding: 10px 20px;
    font-size: 3em;
    text-align: center;
    font-weight: 400;
}

#title h3 span {
    font-size: 1.2em;
    font-family: 'PlaylistS', sans-serif;
}


#content-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

#body-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

#content-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(12, 12, 12, 0.93), rgba(12, 12, 12, 0.93)), url("img/Polish_20250519_091431570.jpg") no-repeat center;
}


.block-content {
    padding: 20px 40px;
        display: flex;
    align-items: center;
}

.block-dark {
    background: rgba(6, 6, 6, 0.9);
}

.block-light {
    background: rgb(149 149 149 / 4%);
}

.dark-strip {
    background: rgba(6, 6, 6, 1);
}

footer .dark-strip a{
    color: red;
    font-family:'PlaylistS', sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 35px;
    padding: 15px;
    transition: all 0.2s ease;
}

footer .dark-strip a:hover{
    color: #fc0fc0;
}

footer {
    position: relative;
    text-align: center;
    align-self: flex-end;
    width: 100%;
    padding: 0 0 20px 0;
}

footer h2 {
    font-family: 'PlaylistS', sans-serif;
    padding: 30px 20px;
    font-size: 2.6em;
    width: 100%;
}

footer h1 {
    font-family: 'UniSansHeavy', sans-serif;
    font-weight: 900;
    width: 100%;
    padding: 0 20px;
    font-size: 3.3em;
    text-transform: uppercase;
}

footer a {
    color: #f6f5f5;
    text-decoration: none;
    font-weight: 200;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

footer a span {
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px;
    color: #171717;
    background: #f6f5f5;
    border-radius: 50px;
    height: 45px;
    width: 45px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}

footer a span i {
    font-size: 1.2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}

@media (max-width: 992px) {
    #main-photo-section {
        /*position: absolute;*/
        /*top: calc(100% - 31vh);*/
        width: 100%;
    }

    #main-photo {
        background: linear-gradient(rgba(12, 12, 12, 0.93), rgba(12, 12, 12, 0.22), rgba(12, 12, 12, 0.22), rgba(12, 12, 12, 0.93)), url("img/Polish_20250519_074212945.jpg") no-repeat center;
        background-size: cover;
        min-height: 400px;
    }
    
    #title h3 {
        padding-top:20px;
        font-size: 2em;
    }
    #content-section {
        /*background: linear-gradient(to bottom, rgb(3 3 3), rgb(76 76 76), rgb(3 3 3));*/
    }

    #content-section:before {
        background: linear-gradient(to bottom, rgb(3 3 3), rgba(76, 76, 76, 0), rgb(3 3 3));
    }

    .block-light {
        background: rgb(6 6 6 / 30%);
    }

    .inside-block-first {
        /*margin-bottom: 120px;*/
    }

    .inside-block-last {
        /*margin-top: 120px;*/
    }

    footer {
        padding: 0;
        padding-bottom: 15px;
    }
    footer h2 {
        font-size: 1.6em;
    }
    footer h1 {
        font-size: 2em;
    }

    footer a {
        font-size: 0.6em;
        padding-bottom: 10px;
    }

    footer a span {
        height: 30px;
        width: 30px;
        margin-left: 7px;
        margin-right: 7px;
    }

    footer a span i {
    }
}