html, body {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;

    width: 100%;
    height: 100%;
}

main {
    background-color: gray;
    display: flex;
    flex-direction: column;

    height: 100%;
    width: 100%;
}

textarea {
    font-size: 50px;
}

.glyph-inspector {
    background-color: lightgreen;
    display: block;
    height: 420px;
    flex-shrink: 0;
}

.glyph-examples {
    display: flex;
}

.glyph-example-small { font-size: 12px; }
.glyph-example-medium { font-size: 52px; }
.glyph-example-large { font-size: 102px; }

.glyph-catalogue {
    display: flex;
    flex-wrap: wrap;

    background-color: lightblue;
    overflow-y:scroll;
}

.glyph-container {
    font-size: 80px;
    /* background-color: lightgray; */
    background-image: linear-gradient(to right, lightgray , gray, lightgray);
    background-image: linear-gradient(to right, gray , lightgray, gray);
    /* margin: 10px; */
    padding-left: 10px;
    padding-right: 10px;

    cursor: pointer;
    align-self: start;
}
