@font-face {
    font-family: 'Cyberdyne';
    src: url('fonts/cyberdyne/cyberdyne.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;

    font-family: Cyberdyne;
    color: #fff;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        -2px 0px 0 #000,
        3px 0px 0 #000,
        0px -2px 0 #000,
        0px 2px 0 #000;

    text-align: center;
}

h1 {
    font-size: 4em;
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
