/* Подключение локального шрифта */
@font-face {
    font-family: designer;
    src: url("DESIB___.ttf");
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Подключение Google-шрифта Akronim */
body {
    background-image: url("delivery_2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    font-family: designer;
    color: white;
    text-align: center;
    margin: 0;
}

/* Контейнер */
.wrapper {
    position: relative;
    width: 800px;
    max-width: 90%; /* Делаем адаптивным */
    margin: 150px auto 0; /* Центрируем */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрирование содержимого */
}

/* Логотип */
.reaLine {
    display: flex;
    justify-content: center;
    font-size: 144px;
}

.rea {
    color: #e57819;
}

.line {
    color: #ffffff;
}

/* Сообщение о строительстве */
.construction {
    font-size: 44px;
    margin-top: 20px;
}

/* Контакты */
.contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.wood, .logistic {
    font-size: 22px;
    line-height: 1.5;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
    width: 45%;
    max-width: 300px;
    text-align: center;
}

.wood a, .logistic a {
    color: #e57819;
    text-decoration: none;
}

.wood a:hover, .logistic a:hover {
    text-decoration: underline;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .reaLine {
        font-size: 60px;
    }

    .construction {
        font-size: 28px;
    }

    .contact {
        flex-direction: column;
        align-items: center;
    }

    .wood, .logistic {
        width: 80%;
        margin-bottom: 20px;
    }
}
