* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: #000;
    color: #fff;
    font-family: "Inter Tight", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page {
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    position: relative;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -0.0005em;
    line-height: 1;
    color: #fff;
}

.logo span {
    position: absolute;

    top: -6px;
    right: -14px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}