body::before {
    content: " ";
    width: max(100%, 100vw);
    height: max(100%, 100vh);
    position: fixed;
    background-color: white;
    background-size: auto;
    background-attachment: initial;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center top;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}

body {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 40px;
    line-height: 45px;
    text-align: left;
    color: black;
}

h2 {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 35px;
    line-height: 42px;
    text-align: left;
    color: black;
}

p {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: normal;
    text-decoration: none;
    font-size: 17px;
    line-height: 28px;
    text-align: justify;
    color: black;
}

address {
    text-align: center;
    font-size: 17px;
    line-height: 24px;
    font-family: "Poppins", Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: white;
}

#body-top {
    position: relative;
    overflow: hidden;
    background-color: black;
}

#popcorn-layer {
    width: 100%;
    display: block;
    overflow: hidden;
    background-color: black;
}

#popcorn-image {
    position: relative;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
}

#logo-layer {
    position: absolute;
    z-index: 999;
}

#logo-image {
    margin: 0 auto;
}

#body-content {
    position: relative;
    overflow: hidden;
    background-color: white;
    padding: 24px;
}

#body-bottom {
    position: relative;
    overflow: hidden;
    background-color: rgb(51, 51, 51);
    padding: 36px;
}

#body-bottom-space {
    width: 100%; height: 60px;
}

/* Ogólne ustawienia kontenera */
.container {
    position: relative;
    max-width: 1366px;
    margin: 0 auto;
    padding: 20px;
}

#body-top .container {
    padding: 0;
}

/* Ustawienia wierszy */
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 20px;
}

/* Kolumna z tekstem */
.text-column {
    flex: 1;
    display: flex;
    flex-direction: column; /* Ustawienie pionowego układu wewnątrz kolumny */
    justify-content: flex-start;
    min-width: 300px;
}

/* Kolumna z obrazkiem */
.image-column {
    margin: 0 auto;
    padding: 4px 16px;
    /* Stała szerokość obrazka */
    /* width: 400px; */
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.image-column img {
    width: 100%;
    height: auto;
}

/* Odwrócenie kolejności dla drugiego wiersza */
.row.reverse {
    flex-direction: row-reverse;
}
