@import url('https://fonts.googleapis.com/css2?family=Inter&amp;display=swap');

@font-face {
    font-family: MatterTRIAL;
    src: url('MatterTRIAL-Medium.woff') format('woff');
}

* {
    font-family: Inter, sans-serif;
    color: white;
}

body {
    margin: 0;
    padding: 0;
    background: black;
}

/*Gradient*/
.shine {
    --start-color: #FF4D4D;
    --end-color: #F9CB28;
    --start-color-2: #7928CA;
    --end-color-2: #FF0080;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(-45deg, #007CF0, #00DFD8, var(--start-color-2), var(--end-color-2), var(--start-color), var(--end-color));
    animation: gradient 5s ease-in-out infinite;
    background-size: 400% 400%;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 50px;
}