@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300&family=Inconsolata:wght@300&family=Share+Tech+Mono&display=swap');

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: black;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
canvas {
    position: absolute;
    top:0;
    left:0;
    z-index: -1;
}
a {
    text-transform: uppercase;
}
a:link {
    color:rgb(238, 238, 238);
    /*background-color: transparent;*/
    text-decoration: none;
}

a:visited {
    color:rgb(238, 238, 238);
    /*background-color: transparent;*/
    text-decoration: none;
}

a:hover {
    color:rgb(238, 238, 238);
    /*background-color: transparent;*/
    text-decoration: underline;
}

a:active {
    color:rgb(238, 238, 238);
    /*background-color: transparent;*/
    text-decoration: underline;
}
.text-box {
    font-size: 60px;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 7px;
    word-spacing: 12px;
    color:rgb(238, 238, 238);
}
.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: row;
}

.button {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 15px;
    margin-left:20px;
    margin-right:20px;
    word-spacing: normal;
    letter-spacing: 5px;
    border: 1px solid white;
    background: black;
    cursor: pointer;
    font-family: 'Inconsolata', monospace;
}