/* Reset domyślnych styli */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ustawienia domyślne dla dokumentu */
html, body {
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    background-color: #F6F6F6;
    color: #000;
    overflow: hidden;
}

/* Usunięcie stylów list */
ul, ol {
    list-style: none;
}

/* Usunięcie podkreślenia linków */
a {
    text-decoration: none;
    color: inherit;
}

.container {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
    position: relative;
    width: 100vw;

    .wrapper {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: calc(100% - 32px);
        position: relative;
        z-index: 2;

        .logo_small {
            width: 234px;
            @media screen and (min-width: 768px) {
                display: none;
            }
        }

        .logo_large {
            display: none;

            @media screen and (min-width: 768px) {
                display: block;
            }
        }

        .wrapper_content {
            align-items: center;
            display: flex;
            flex-direction: column;

            h1 {
                color: #292B2F;
                font-size: 24px;
                font-weight: 700;
                line-height: 32px;
                text-align: center;

                @media screen and (min-width: 768px) {
                    font-size: 40px;
                    line-height: 56px;
                }
            }

            p {
                color: #292B2F;
                font-size: 16px;
                line-height: 24px;
                margin-top:16px;
                letter-spacing: -1px;
                font-weight: 500;
                text-align: center;

                br {
                    @media screen and (min-width: 768px) {
                        display: none;
                    }
                }
            }
        }
    }

    .container_background {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        width: 749px;
        height: 630px;
        z-index: 1;

        @media screen and (min-width: 768px) {
            width: 1366px;
            height: 741px;
        }

        @media screen and (min-width: 1366px) {
            width: 1958px;
            height: 741px;
        }

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

        .mobile {
            @media screen and (min-width: 768px) {
                display: none;
            }
        }

        .tablet {
            display: none;

            @media screen and (min-width: 768px) {
                display: block;
            }

            @media screen and (min-width: 1366px) {
                display: none;
            }
        }

        .desktop {
            display: none;

            @media screen and (min-width: 1366px) {
                display: block;
            }
        }
    }
}
