body {
    background-color: #0F1C2E;
    margin: 0;
}

.title-main {
    font-family: 'Great Vibes';
    font-size: 100px;
    font-weight: bold;
    background: linear-gradient(
        45deg,
        #8C6A1E,
        #D4AF37,
        #FFF4B0,
        #B8860B,
        #8C6A1E
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    text-shadow:
        0 0 10px rgba(212, 175, 55, 0.6),
        0 0 20px rgba(212, 175, 55, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.6);
    background-size: 200% 200%;
}

.container_main {
    position: relative; /* текст поверх фоток */
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.stikers {
    position: absolute; /* фон на весь экран */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* под текстом */
}

.stikers img {
    position: absolute;
    width: 120px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.foto-1 {
    top: 10%;
    left: 15%;
    transform: rotate(-10deg);
}

.foto-2 {
    top: 60%;
    left: 70%;
    transform: rotate(8deg);
}

.foto-3 {
    top: 30%;
    left: 80%;
    transform: rotate(-5deg);
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
}
.section-img {
    margin-right: 20px;
    width: 400px;   /* одинаковая ширина */
    height: 400px;  /* одинаковая высота */
    object-fit: cover; /* чтобы фото не искажалось, а подрезалось по центру */
    object-position: top;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.section-text {
    font-size: 25px;
    color: #F5F5F5;
    font-family: 'Roboto', serif;
}

/* ❗ автоматическое чередование: каждый 2-й блок */
.section:nth-child(even) {
    flex-direction: row-reverse;
}
.text {
    display: flex;
    justify-content: center;
    color: rgb(255, 181, 181);
}