body {
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    overflow-x: hidden;
    overflow-y: scroll;
}

.clearfix {
    box-sizing: border-box;
    padding: 10px 20px;
}

select {
    min-width: 100px;
    font-size: 20px;
}

.grid {
    overflow: hidden;
}

.item-wrapper {
    height: 130px;
	min-width: 150px;
	max-width: 200px;
    text-align: center;
}

.item-wrapper h2 {
    padding-top: 55px;
    margin: 0;
}

.item {
    position: absolute;
    visibility: hidden;
    left: 0px;
    top: 0px;
    color: white;
    box-sizing: border-box;
    padding: 5px 5px;
}

.redItem .item-wrapper {
    background: #DD0000;
}

.violetItem .item-wrapper {
    background: #9a7eb4;
}

.blueItem .item-wrapper {
    background: #3F5A9B;
}
.greenItem .item-wrapper {
    background: #00c021;
}
.yellowItem .item-wrapper {
    background: #E8DB53;
}
.orangeItem .item-wrapper {
    background: #D85600;
}
.grayItem .item-wrapper {
    background: #606060;
}