/* Сброс отступов */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Rubik', 'Inter', sans-serif;
    background-color: #000;
}

/* Основной контейнер */
.page {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Фоновое изображение */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Слой затемнения */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* Текстовый слой */
.content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #ffffff;
}

.content h1 {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 500;
    line-height: 1.4;
}
