@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&display=swap');
* {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}
body {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 20px 0;
    background: #050505;
    text-align: center;
    font-family: 'Cinzel', serif;
    overflow-x: hidden;
}

/* =========================
   ЛОГО
   ========================= */

.logo {
    position: relative;
    z-index: 10;
    width: 350px;
    max-width: 90%;
    display: block;
    margin: 0 auto 0px auto;
}

/* =========================
   ТЕКСТ
   ========================= */

.text-block {
    margin-bottom: 40px;
    position: relative;

    z-index: 10;
}

.website {
    color: #d1b98f;

    font-size: 34px;
    font-weight: 700;
    letter-spacing: 4px;

    margin-bottom: 5px;
}

.collection {
    color: #c4bab0;

    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.slogan {
    color: #6e5222;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;

    margin-bottom: 5px;
}

/* =========================
   НИЖНИЕ КАРТИНКИ
   ========================= */

.bottom-images {
    margin-top: -550px;
    position: relative;

    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;

    gap: 500px;

    width: 100%;
}

.bottom-image {
    width: 700px;
    max-width: 40vw;
    height: auto;

    display: block;
}

/* =========================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================= */

@media (max-width: 900px) {

    .logo {
        width: 230px;
        max-width: 80%;
    }

    .website {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .collection {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .slogan {
        font-size: 14px;
        letter-spacing: 2px;
        line-height: 1.3;
    }

   .bottom-images {
    gap: 10px;
    margin-top: -30px;
}

.bottom-image:last-child {
    display: none;
}

.bottom-image {
    width: 70%;
    max-width: 350px;
}
}
