* {
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
body, html {
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #141414;
    width: 100vw;
    height: 100vh;
}
.row {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-image: url("/images/background.png");
    background-size: cover;

}
.text-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo-block {
    display: flex;
    flex-direction: column;
    gap: 37px;
    justify-items: center;
    align-items: center;
    position: absolute;
    margin-top: 340px;
}

.karma {
    display: block;
    background-image: url("/images/karma.svg");
    width: 164px;
    height: 29px;
}

.karma-logo {
    display: block;
    background-image: url("/images/karma_logo.png");
    width: 83px;
    height: 75px;
}

.text {
    color: #F5F5F5;
    text-align: center;
    font-family: Poppins;
    font-size: 89.358px;
    font-style: normal;
    font-weight: 400;
    line-height: 177.525px; /* 198.666% */
    letter-spacing: -0.894px;
}

@media screen and (max-width: 600px) {
    .text {
        font-size: 48px;
        line-height: 70px; /* 198.666% */
    }
}
