* {
    font-family: Roboto, Arial, sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    position: relative;
    /* Prevent "over-scrolling" on Chrome and Firefox mobile */
    overscroll-behavior: none;
    background: #ddd;
}

body {
    /* Prevent "over-scrolling" on Safari iOS */
    touch-action: none;
    /* Intestingly, the canvas still reacts to clicking and dragging */
    overflow: hidden;
}

h2 {
    font-size: 21px;
}

h3,
h4 {
    font-size: 20px;
}

em.u {
    font-style: normal;
    text-decoration: underline;
}

#app {
    width: 100%;
    height: 100%;
    min-width: 400px;
    min-height: 400px;
}

.palette-round {
    border-radius: 8px;
    box-sizing: border-box;
    z-index: 1004;
    background: white;
    border-bottom: 1px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #dadce0;
    transition-property: background, box-shadow;
    transition-duration: .3s;
}

.text {
    line-height: 1.5em;
    font-size: 13px;
    color: rgba(0, 0, 0, .87);
}

.small_text {
    line-height: 1.5em;
    font-size: 12px;
    color: rgba(0, 0, 0, .5);
}

.credits {
    padding-top: 4px;
    text-align: right;
}

.canBeClicked:hover {
    opacity: 80%;
    cursor: pointer;
}

@font-face {
    font-family: UbuntuMedium;
    src: url("/css/Ubuntu-Medium.ttf");
}

@font-face {
    font-family: Sriracha;
    src: url("/css/Sriracha-Regular.ttf");
}