.timer-area {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
.column h2{
   color: #333;
}
#type-column, #stat-column{
  min-height:215px;   
}
.button-area{
    text-align: center;
}
.format-button {
    background-color: #7d3e12;
    border: none;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    margin: 5px;
}
#time {
    font-size: 18px;
    font-weight: bold;
}
.types-list, .stat-list{
    padding-left: 0px;
}
.types-list li, .stat-list li {
    list-style: none;
}
.row{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;    
}
.column {
    text-align: center;
    float: left;
    width: 45%;
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    transition: all .3s ease;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

.status-msg {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    margin-top: 5px;
    height: 22px;
    animation: shake 0.5s;
    animation-iteration-count: 1;    
}

#guesscard {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 600px;
    border: 3px solid #7d3e12;
    border-radius: 5px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;    
}

.correct-area {
    text-align: center;
    margin-top: 10px;
    max-width: 50%;
    margin-lefT: auto;
    margin-right: auto;
}

.correct-area img{
    max-width: 110px;
    padding: 2px;
}

.correct-area figure {
    display: inline-block;
}

.fig-name {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
    display: inline-block;
}

select#timer-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    padding: 0 10px;
    height: 28px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700!important;
    text-decoration: none!important;
    color: #7d3e12;
    background-color: #f9f7f5;
    border: 1px solid rgba(178,89,26,.5);
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.06);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.06);
    -webkit-transition: color,border-color,background-color,fill;
    -o-transition: color,border-color,background-color,fill;
    transition: color,border-color,background-color,fill;
    -webkit-transition-duration: 50ms;
    -o-transition-duration: 50ms;
    transition-duration: 50ms;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}

.types-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2px 5px;
}
.types-list > span > img {
    display: inline-block;
    vertical-align: top;
    height: 1.25em;
    margin-right: .2em;
}

@media screen and (max-width: 900px) {
 .row {
    width: 100%;
 }   
}
@media screen and (max-width: 800px) {
 #guesscard {
    width: 100%;
    max-width: 500px;
    font-size: 16px;
 }   
}
@media screen and (max-width: 600px) {
 #guesscard {
    width: 100%;
    max-width: 400px;
    font-size: 14px;
 }   
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}