* {
    font-family: "Red Hat Display", sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}
.container {
    max-width: 1040px;
    padding-left: 25px;
    padding-right: 25px;
    margin: 0 auto;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.header {
    box-shadow: 0 4px 4px 0 #00000008;
    display: flex;
}
.header__container {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    row-gap: 10px;
}
.header__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
}
.main {
    width: 100%;
    margin: auto;
}
.footer {
    padding-bottom: 40px;
    width: 100%;
}
.main__content {
    background: linear-gradient(95.03deg, #CEF1E5 3.11%, #CEEDF1 24.12%, #CED8F1 64.42%, #CEF1E5 96.47%);
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    border-radius: 20px;
}
.main__text {
    font-size: 32px;
    font-weight: 900;
    line-height: 42px;
    text-align: center;
}
.main__buttons {
    display: flex;
    gap: 10px;
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 60px;
    margin: 0 auto;
}
.footer__bottom__link {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    text-align: center;
    color: #8DB4A6;
}

@media screen and (max-width: 1000px) {
    .header__container {
        padding-top: 15px;
        padding-bottom: 15px;
        flex-wrap: wrap;
    }
    .footer {
        padding-bottom: 40px;
    }
    .main__content {
    }
}

@media screen and (max-width: 790px) {
    .footer__bottom {
        flex-direction: column;
    }
    .header__container {
        align-items: center;
        justify-content: space-between;
    }
}
@media screen and (max-width: 670px) {
    .header__container {
        justify-content: center;
        flex-direction: column;
    }
}
@media screen and (max-width: 550px) {
    .header__logo {
        max-width: 123px;
    }
    .header__text {
        font-size: 16px;
        text-align: center;
    }
    .main__text {
        font-size: 24px;
        font-weight: 900;
        line-height: 31px;
    }
}
