@font-face {
    font-family: '10Pixel Thin';
    src: url('./fonts/10Pixel-Thin.ttf') format('truetype');
} 

@font-face {
    font-family: '10Pixel Regular';
    src: url('./fonts/10Pixel-Regular.ttf') format('truetype');
}

@font-face {
    font-family: '10Pixel Bold';
    src: url('./fonts/10Pixel-Bold.ttf') format('truetype');
}

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #11151c;
}

body {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

* {
    box-sizing: border-box;
}

.name {
    text-align: center;
    color: rgb(230, 245, 253);
    font-size: 5rem;
    font-family: '10Pixel Bold';
    letter-spacing: 1rem;
}

.text {
    text-align: center;
    font-family: '10Pixel Bold';
    color: rgb(150, 178, 199);
    font-size: 2.5rem;
}