body {
    background-color: #282F33;
    height: 100vh;
    padding-top: 50px;
    font-family: "Geologica", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    max-width: 900px;
    margin: 0 auto;

}

.header__nav, .header__nav-list, .header__wrapper, .main__wrapper, .footer__wrapper {
    display: flex;
    justify-content: space-between;
}

.main {
    margin-top: 60px;
}

.main__content, .footer__content {
    max-width: 460px;
}

.header__nav-item, .main__content {
    color: white;
}

.header__nav-item {
    list-style: none;
    font-size: 14px;
    margin-right: 30px;
}

.main__content {
    font-size: 37px;
    font-weight: 700;
    line-height: 1.25;
}

.footer {
    margin-top: 60px;
}

.footer__wrapper {
    align-items: center;
    justify-content: space-between;
}

.footer__content {
    color: #75F4DC;
    font-size: 24px;
    max-width: 460px;
}

.footer__button {
    border: 1.5px solid #75F4DC;
    font-size: 17px;
    border-radius: 7px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;

}

.footer__button:hover {
    background-color: #75F4DC;
    color: #282F33;
    transform: translateY(-3px); /* лёгкий "подъём" */
    box-shadow: 0 4px 10px rgba(117, 244, 220, 0.3);
}

.main__img--img {
    max-width: 100%; /* картинка не выйдет за пределы родителя */
    height: auto;    /* сохраняет пропорции */
    display: block;  /* убирает лишние отступы (inline-элемент по умолчанию) */
}



@media (max-width: 990px) {
    .footer__content {
        /*max-width: 350px;*/
        /*font-size: 20px;*/
    }
}

@media (min-width: 990px) {
    .footer__button {
        margin-left: 75px;
    }
}