body {
    padding: 0;
    margin: 0;
    font-family: "work-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.wrapper {
    background: url(background.png) no-repeat center;
    background-size: cover;
    padding: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.wrapper::before {
    content:'';
    width: 100%;
    height: 100%;
    background: url(ornament.svg) no-repeat center;
    background-size: cover;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
}

.container {
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    position: relative;
      
}

.logo img {
    width: 566px;
}




.footer {
    position: absolute;
    bottom:30px;
    left:50%;
    color: white;
    text-decoration: none;
        transform: translateX(-50%);
}

.footer a {
        display: flex;
    align-items: center;
}
.footer a::before {
    content:'';
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-left: 5px;
     background: url(logo-onboard.svg) no-repeat center;
         background-size: contain;
    margin-right: 10px;
}

.texty {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
}

.title {
    font-size: 40px;
    color: #B5A8E3;
    text-transform: uppercase;
    text-align: center;
        font-weight: 400;
    font-style: normal;
}

.text2 {
    font-size: 30px;
    color: #B5A8E3;
    text-align: center;
    font-weight: 700;
    font-style: italic;
}

.bold {
    font-family: "work-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.logo {
    display: flex;
    align-items: center;
}
.images {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px;
    color: white;
}
.images img {
    margin-bottom: 20px;

}
.images a {
    color: #B5A8E3;
}

a {
    color: white;
    text-decoration: none;
}
.link {
        display: flex;
    align-items: center;
}
.link::after {
    content:'';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 5px;
     background: url(ico.svg) no-repeat center;
}

@media screen and (max-width:700px){
    .logo img {
    width: 70%;
    margin: 0 auto;
}

.images img {
    max-width: 70%;
    height: auto;
}


.title {
    font-size: 30px;
    color: #B5A8E3;
    text-transform: uppercase;
    text-align: center;
        font-weight: 400;
    font-style: normal;
}

.text2 {
    font-size: 20px;
    color: #B5A8E3;
    text-align: center;
    font-weight: 700;
    font-style: italic;
}


}
@media screen and (max-width:700px){
    .wrapper::before {
        content:'';
        width: 100%;
        height: 100%;
        background: url(ornament-mob.svg) no-repeat center;
        background-size: cover;
        z-index: 2;
        position: absolute;
        left: 0;
        top: 0;
    }

    .images {
            padding-bottom:50px;
    }

    .footer {
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .footer a {
        text-align: center;
    justify-content: center;
    }

    .wrapper {
        height: auto;
        min-height: 100%;
    }
    .container {
        padding-top:50px;
         padding-bottom:50px;
    }

    .texty {
        padding-left: 20px;
        padding-right: 20px;
    }
}