* {
    font-family: "Inter", sans-serif;
    color: white;
}
body,html {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.cover {
    height: 100vh;
    width: 100vw;
    background: #26383A;
    position: relative;

}

.cover__container {
    padding: 137px;
}

.cover::after {
    background: url('http://yuholdings.pl/bg.svg');
    background-position: right;
    background-size: contain;
    width: 1250px;
    height: 961px;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-repeat: no-repeat;
    z-index: 1;
}
.cover__container * {
    position: relative;
    z-index: 2;
}

.cover__logo {
    width: 248px;
    padding-bottom: 121px;
}

.cover__desc {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    max-width: 581px;
    line-height: 37px;
    padding-bottom: 30px;
}

.cover__bold {
    font-size: 24px;
    font-weight: 700;
    line-height: 37px;
    padding-bottom: 78px;
}

.cover__link {
    padding: 27px 38px;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #fff;
    margin-bottom: 79px;
    display: inline-block;

}

.cover__copyright {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 37px;
}
@media(max-height:950px){
    .cover__bold {
        padding-bottom: 20px;
    }
    .cover__link {
        margin-bottom: 20px;
    }
    .cover__logo{
        padding-bottom: 20px;
    }
}
@media(max-width:992px){
    .cover__container {
        padding: 40px;
    }
}