html {
    box-sizing: border-box;
    background-image: url(/img/index_background.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}
.external_main {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 50px;
    padding-top: 260px;
    padding-bottom: 150px;
}

.external_main p {
    padding: 0;
    margin: 0;
}

.external_contacty {
    display: flex;
    text-align: center;
    margin: auto;
    background: rgba(250, 203, 126, 0.34);
    border-radius: 6px;
    width: 820px;
    height: 110px;
    font-size: 18px;
}

.title {
    font-size: 24px;
}

.external_contacty ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.external_contacty li {
    display: flex;
    padding: 0px;
    margin: 0px;
}

.external_contacty a {
    display: flex;
    justify-content: center;
    justify-content: space-between;
}

.external_contacty div {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}

.external_contacty img {
    margin: 10px;
}

.external_contacty p {
    padding: 0px;
    margin: 0px;
}

/* Адаптація для мобільних */
@media (max-width: 1100px) {
    .external_contacty ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .external_contacty {
        width: 350px;
        height: 300px;
        margin-bottom: 20px;
    }

    .external_main {
        padding-top: 0px;
        padding-bottom: 50px;
    }
}