@font-face {
    font-family: 'bit-font';
    src: url('../fonts/bitcount-single-v1-latin-300.woff2') format('woff2')
}

@font-face {
    font-family: 'test';
    src: url('../fonts/zilla-slab-v11-latin-regular.woff2') format('woff2')
}

body {
    background-color: black;
}

#title {
    font-family: 'bit-font';
    color: greenyellow;
    text-align: center;
    margin-bottom: 0;
}

#ipsum {
    font-family: 'test';
    margin-top: 20px;
    text-align: center;
    color: white;
}

#test-button {
    background-color: #7d00fb;
    border: none;
    color: white;
    padding: 8px 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 1000;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    cursor: pointer;
    border-radius: 2px;
    transition-duration: 0.1s;
}

#test-button:hover {
    background-color: #5b00b6;
}