* {
    font-family: "Manrope", 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;
    background: black;
    background-image: radial-gradient(circle at calc(15% - 40px) calc(65% + 50px),
    rgba(4, 0, 203, 0.5) 1%, transparent calc(15% + 10vw)),
    radial-gradient(circle at calc(90% + 0px) calc(10% + 0px),
        rgba(134, 0, 113, 0.5) 1%, transparent calc(15% + 10vw));
    background-repeat: no-repeat;
    margin: 0;
}
.header {
    box-shadow: 0 4px 4px 0 #00000008;
    display: flex;
    color: #FFFFFF;
}
.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(90deg, #0300BC 0%, #7E0076 100%);
    padding: 50px 62px;
    display: flex;
    gap: 50px;
    align-items: center;
    border-radius: 20px;
    margin-bottom: 60px;
    flex-direction: row;
}
.main__text {
    font-size: 24px;
    font-weight: 534;
    line-height: 42px;
    text-align: left;
    color: #FAFAFA;
    flex: 1;
}
.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: #FAFAFA;
}

@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;
    }
    .main__content {
        flex-direction: column;
    }
}
@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;
    }
}
