body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #F3F6F8;
    font-family: 'Inter';
    font-style: normal;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.logo {
    position: absolute;
    top: 37%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.image {
    position: absolute;
    right: 0;
}

.info-wrapper {
    position: absolute;
    display: flex;
    bottom: 20%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.info {
    width: 384px;
}

.info__text {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 44px;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #1B1052;
}

.info__links-telegram-text a {
    text-decoration: none;
}

.info__links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.info__links-discord,
.info__links-telegram {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info__links-discord-text,
.info__links-telegram-text {
    margin-left: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #1B1052;
}

a {
    text-decoration: none;
}

.play-image {
    position: absolute;
    width: 40%;
    right: 0;
}

@media (max-width: 650px) {
    .logo {
        top: 30%;
    }

    .logo svg {
        width: 70%;
    }

    .info-wrapper {
        bottom: 10%;
    }

    .info__text {
        font-size: 26px;
        line-height: 36px;
    }

    .info__links {
        flex-direction: column;
    }

    .info__links-discord,
    .info__links-telegram {
        justify-content: center;
    }

    .info__links-telegram {
        margin-top: 12px;
    }

    .play-image {
        width: 70%;
    }
}