@font-face {
    font-family: 'FiraCode';
    src: url('assets/FiraCode-Medium.ttf') format('truetype');
}

* {
    font-family: 'FiraCode', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

button {
    background-color: wheat;
    color: black;
    border-radius: 5px;
    border: none;
    padding: 10px;
    font-size: 1.5em;
}

button:active {
    border: 2px solid white;
}

button.active {
    border: 2px solid white;
}

h1 {
    background-color: wheat;
    color: black;
    border-radius: 5px;
    padding: 10px;
    font-size: 2.5em;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #222222;
    align-items: center;
    justify-content: center;
    color: wheat;
}

#svgViewport {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#svgViewport svg {
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

p {
    color: grey;
}

#github {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: grey;
    cursor: pointer;
}