* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    text-align: center;
}

html, body {
    height: 100%;
}

#version {
    background-color: black;
    color: rgb(0, 160, 0);
}

#container {
    display: grid;
    grid-template-rows: auto max-content max-content max-content auto;
    height: 100%;
    background: black;
    overflow: auto;
}

.wrapper {
    justify-content: center;
}

#honeycombContainer {
    width: 100%;
    padding: 20px 0;
    overflow: auto;
}

#main {
    background: black;
    width: 100%;
    display: table;
    margin: auto 0;
}

#honeycombWrapper {
    display: table-cell;
    vertical-align: middle;
}


/* -------------------- Mode & Sounds Buttons -------------------- */

.settingsContainer {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.soundBtn, .modeBtn {
    z-index: 1;
    min-width: 62px;
    margin: 0 5px;
    padding: 10px;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    background: cyan;
}

.soundBtnOn, .modeBtnOn {
    background: lightcyan;
}

.pitchBtn {
    display: grid;
    align-items: center;
    margin: 0 5px;
    padding: 0 10px;
    z-index: 1;
    min-width: 62px;
    border-radius: 10px;
    background: white;
    background: cyan;   
}

.grid-item {
    text-align: center;
}

#pitch {
    grid-column: 1;
    grid-row: 1 / span 2;
    cursor: auto;
}

.arrow {
    grid-column: 2;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    cursor: pointer;
}

#upArrow {
    grid-row: 1;
    border-top: 0;
    border-bottom: 10px solid black;
    align-self: self-end;
    margin-bottom: 2px;
}

#downArrow {
    grid-row: 2;
    border-top: 10px solid black;
    border-bottom: 0;
    align-self: self-start;
    margin-top: 2px;
}

input {
    all: unset;
    width: 40px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* -------------------- Honeycomb -------------------- */

.row {
    display: grid;
    margin: -12px 0;
    grid-template-columns: repeat(19, 0fr);
    justify-content: center;
    align-content: center;
}

.text {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

.hex {
    font-size: 28px;
    height: 70px;
    width: 70px;
    align-self: center;
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}

.smallText {
    font-size: 16px;
}

.justOn {
    background: yellow;
}

.hybridOn {
    background: greenyellow;
}

.equalOn {
    background: lightgreen;
}