* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: verdana, sans-serif;
    font-weight: bold;
}

/* Фон на весь экран + затемнение */
.wrapper {
    position: relative;
    min-height: 100vh;
    background: url("uploads/logo.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 80px;
    padding-bottom: 117px; /* место под toolbar */
}

/* Затемняющий слой */
.wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* степень затемнения */
    z-index: 1;
}


.wrapper::before {
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.3),
        rgba(0,0,0,0)
    );
}


/* Левый блок поверх затемнения */
.content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    color: #fff;
}

/* Заголовок-картинка */
.title-img {
    max-width: 100%;
    margin-bottom: 20px;
}

/* Текст */
.text {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 30px;
}

/* Кнопка */
.button-link img {
    max-width: 200px;
    transition: transform 0.2s ease;
}

.button-link img:hover {
    transform: scale(1.05);
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
    .wrapper {
        justify-content: center;
        padding: 20px;
    }

    .content {
        text-align: center;
    }

    .text {
        font-size: 11px;
        line-height: 15px;

    }
}

/* Нижний toolbar */
.toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 37px;
    background-color: #173066;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-family: verdana, sans-serif;
    font-weight: normal;
    z-index: 3;
}
