body {
  background-color: gray;
}
.container {
  width: 80vw;
  height: 600px;
  background-color: blue;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 1px solid black;
}
.row {
  width: 100%;
}
.row.small {
  height: 3px;
}
.row.medium {
  height: 13px;
}
.row.big {
  height: 20px;
}
.row-secondary:nth-child(1) {
  border-right: 0.5px solid black;
}
.row:nth-child(1) {
  background-color: lightgray;
}
.row:nth-child(2) {
  background-color: white;
  border-top: 1.5px solid black;
  border-bottom: 1.5px solid black;
}
.row:nth-child(3), .row:nth-child(4) {
  display: grid;
  grid-template-columns: 3fr 1fr;
}
.row:nth-child(3) {
  background-color: #666666;
  border-bottom: 1.5px solid black;
}
.row:nth-child(4) {
  background-color: #a3a3a3;
  border-bottom: 1.5px solid black;
}
.row:nth-child(5) {
  height: 70px;
  /*background-color: lightgray;*/
  background: url('../assets/header.png');
  filter: hue-rotate(50deg);
  border-bottom: 1.5px solid black;
}
.row:nth-child(6) {
  background-color: #666666;
  border-bottom: 1.5px solid black;
}
.row:nth-child(7) {
  background-color: #a3a3a3;
  border-bottom: 2px solid white;
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: 15px;
}
.row:nth-child(8) {
  height: 375px;
  box-shadow: inset 0 9px 20px -10px black;
}
.row:nth-child(9) {
  background-color: lightgray;
  border-top: 1.5px solid #717171;
  border-bottom: 1.5px solid #717171;
}
.row:nth-child(10) {
  background-color: #999999;
  border-bottom: 1.5px solid #717171;
}
.row:nth-child(11) {
  background-color: #acacac;
  border-bottom: 1.5px solid black;
}
.row:nth-child(12) {
  background-color: #666666;
  border-bottom: 2px solid white;
}
.row:nth-child(13) {
  background-color: #575757;
  border-top: 1.5px solid black;
  border-bottom: 2px solid white;
}
.row:nth-child(14) {
  background-color: gray;
  border-top: 1.5px solid black;
}
.bevel-light {
  box-shadow: inset 5px 5px 0px -4px #FFFFFF, inset -5px -5px 2px -5px #FFFFFF;
}
.bevel-dark {
  box-shadow: inset 5px 5px 0px -4px lightgray, inset -5px -5px 2px -5px lightgray;
}
.text-button {
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
a {
  text-decoration: none;
  color: black;
}
.text-button.disabled,
a.disabled {
  cursor: default;
  color: #555;
}