@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-VariableFont_opsz,wght.ttf');
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    src: url('/assets/fonts/Inter-Italic-VariableFont_opsz,wght.ttf');
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    font-weight: 750;
}

#yourText {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 20vh;
    color: #fff;
    z-index: 9999;
    transition: font-weight 0.3s ease;
}

main {
    height: 100%;
}

svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}