/* * {
    outline: deeppink 1px solid;
} */

.body-bg {
    max-width: 1440px;
    height: 900px;
    padding: 0 10px;
    margin: 0 auto;
    background: url(../image/background.svg);
    background-repeat: no-repeat;
    background-position: 100% 25%;
}

/* Блок header */

.header {
    margin-top: 90px;
}

.header__container {
    max-width: 1440px;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    width: 201px;
    height: 40px;
    
}

.header__btn {
    width: 115px;
    height: 38px;
    background-color: #5222D0;
    border: none;
    border-radius: 100px;
}

.header__btn:hover {
    background-color: #5322d0c6;
}

.header__btn-text {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    margin: 1px;
}

/* Секция main  */

.main {
    grid-row: 2 / 3;
}
.main__section {
    position: relative;
    top: 10vh;
}

.main__title {
    font-family: "Inter", sans-serif;
    font-size: 60px;
    color: #000;
    width: 545px;
    text-transform: uppercase;
    margin-bottom: 4vh;
}

.main__text {
    font-family: "Roboto Slab", serif;
    font-size: 20px;
    color: #000;
    width: 487px;
    margin-bottom: 4vh;
}

.main__btm-buy {
    width: 270px;
    height: 84px;
    background-color: #5222D0;
    border: none;
    border-radius: 100px;
    position: relative;
}

.main__btm-buy:hover {
    background-color: #5322d0c6;
}

.main__btm-buy-link {
    font-size: 35px;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
}

.main__img-guy{
    position: absolute;
    right: 150px;
    bottom: -152px;
}

/* Секция footer */

.footer {
    position: relative;
    top: 24vh;
    left: -6vh;
}
.menu {
    display: flex;
    justify-content: baseline;
    align-items: center;
}

.menu__items {
    display: flex;
    gap: 0 20px;
}

.menu__item {
    list-style: none;
}

.menu__link_blue {
    color: #5222d0;
}
    
.menu__link_blue:hover {
    color: #5322d0c6;
}


