@import url(https://fonts.googleapis.com/css?family=Merriweather);

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Custom Fonts */
@font-face {
font-family: pollen;
src: url(pollen.otf) format('opentype');
}
@font-face {
  font-family: comb;
  src: url(honeycomb.ttf) format('opentype');
  }

.custom-cursor {
    cursor: url('bee2.png'), pointer;
  }

html {
  font-family: Calibri, Georgia, serif;
  font-size: 75.5%;
  font-weight: bold;
}
body {
  color: hsl(0, 0%, 10%);
  background-color: #1C1D1C;
  border-top: 0px solid hsl(220, 50%, 75%);
  max-width: 920px;
  margin: 0 auto;
  padding: 30px;
  bottom: 0;
  top: 0;
}

a {
        text-decoration-color: grey;
      }
      a:link {
        color: black;
        font-weight: bold;
      }
      a:hover {
        color: black;
        font-weight: bold;

      }
      a:visited {
        color: black;
        font-weight: bold;
      }

.header {
  font-size: 70px;
  height: 100px;
  color: white;
  font-family: comb;
  align-items: center;
  align-content: center;
  text-align: center;
}
.hexagon {
  position: relative;
  display: inline-block;
  /* left/right margin approx. 25% of .hexagon width + spacing */
  margin: 1px 18px;
  background-color: hsl(220, 75%, 75%);
  text-align: center;
}
.hexagon, .hexagon::before, .hexagon::after {
  /* easy way: height is width * 1.732
  actual formula is 2*(width/(2*Math.tan(Math.PI/6)))
  remove border-radius for sharp corners on hexagons */
  width: 67px;
  height: 116px;
  border-radius: 20%/5%;
}
.hexagon::before {
  background-color: inherit;
  content: "";
  position: absolute;
  left: 0;
  transform: rotate(-60deg);
}
.hexagon::after {
  background-color: inherit;
  content: "";
  position: absolute;
  left: 0;
  transform: rotate(60deg);
}
.hexagon:nth-child(even) {
  /* top approx. 50% of .hexagon height + spacing */
  top: 59px;
}
.hexagon:hover {
  background-color: hsla(60, 75%, 75%, 1.0);
  border-color: white; /* Add a white solid outline */
}

.hexagon:active {
  background-color: hsla(60, 75%, 50%, 1.0);
  z-index: 110;
}
.hexanone {
  position: relative;
  display: inline-block;
  width: 67px;
  height: 116px;
  margin: 1px 18px;
}
.hexanone:nth-child(even) {
  top: 59px;
}
.hexagontent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  /* font-size: 1.4rem; */
  font-size: 1.6rem;
  line-height: 1.2;
  z-index: 100;
}
.ibws-fix {
  /* inline-block whitespace fix */
  font-size: 0;
}
.honeycomb {
  margin: 0 auto;
  text-align: center;
}


 

 