@font-face {
    font-family: 'RobotoLight';
    src: url('/fonts/Roboto/Roboto-Light.woff2');
    font-display: swap;
}

@font-face {
    font-family: 'RobotoThin';
    src: url('/fonts/Roboto/Roboto-Thin.woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('/fonts/Roboto/Roboto-Bold.woff2');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'RobotoLight';
}

body {
    background: #00050F;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    color: #fff;
}

#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.wrapper {
    width: 100%;
    max-width: 750px;
    min-height: 500px;
    border-radius: 10px;
    margin: 30px auto;
    background: #19181E;
    z-index: 5;
}