html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

body {
    background: url("https://nanos.club/assets/images/ganch.png") no-repeat;
    background-size: 100% 100%;
    display: grid;
    place-items: center;
}

p {
    font-weight: bolder;
    font-size: 8rem;
    text-align: center;
    background: linear-gradient(to right, red, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

