html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Courier New", monospace;
    color: #333333;
}

html {
    flex-direction: column;
}

body {
    flex-direction: row;
    overflow: hidden;
    touch-action: none;
    background: transparent;
}

canvas {
    margin: auto;
    display: block;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

#userInfo {
    position: absolute;
    top: 1em;
    left: 1em;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.3em 0.7em;
    line-height: 1.4em;
    border-radius: 9px;
}

#userInfo span {
    display: block;
}

#henLink {
    text-decoration: none;
    color: #333333;
}

#warning {
    display: none;
    color: #ff4444;
}

#connectionInfo {
    position: absolute;
    top: 1em;
    right: 1em;
    text-align: right;
    color: #333333;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.3em 0.7em;
    border-radius: 9px;
}

#input {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: 2em;
    background: rgba(255, 255, 255, 0.6);
    display: none;
}

#walletInput {
    width: 22em;
    text-align: right;
    font-family: monospace;
}
