body {
    margin: 0;
    background-color: #b38f8f;
  }
  .menu-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .hex-wrapper {
    display: inline-block;
  }
  .hex-row {
    clear: left;
  }
  .shift {
      margin-left: 98px;
  }

  .hexagon {
    display: flex;
    float: left;
    position: relative;
    margin: 30px 3px;
    width: 190px;
    height: 110px;
    /* background-color: #c7c7c7; */
    background-position: center center;
    z-index: 1;
    /* Text styling */
    align-items: center;
    /* line-height: 110px; */
    justify-content: center;
    font-family: 'Belanosima', sans-serif;
    /* font-size: 1.5em; */
    font-weight: bold;
    letter-spacing: 1px;
    color: #000;
    color: rgba(0, 0, 0, .5);
    cursor: pointer;
    transition: color 500ms ease, text-shadow 500ms ease, background-color 500ms ease, -webkit-transform 1s ease-in-out;
  }
  .hexagon:hover {
    color: #ffffff;
    text-shadow: 0 0 10px white;
    /* background-color: #c40000; */
  
  }
  .hexagon .face1,
  .hexagon .face2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: inherit;
    z-index: -1;
    /* Keeps borders smooth in webkit */
    backface-visibility: hidden;
  }
  .hexagon .face1:before,
  .hexagon .face2:before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: inherit;
  }
  .hexagon .face1 { transform: rotate(60deg); }
  .hexagon .face1:before {
    left: 0;
    transform-origin: left top;
    transform: rotate(-60deg) translate(-110px, 0);
  }
  .hexagon .face2 { transform: rotate(-60deg); }
  .hexagon .face2:before {
    right: 0;
    transform-origin: right top;
    transform: rotate(60deg) translate(110px, 0);
  }
  .main {
    background-color: #ff0000;
  }