/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/*body {*/
/*  background-color: #FFB200;*/
/*  color: black;*/
/*  font-family: Verdana;*/
/*}*/

.menu-item {
  display: block;
  background: #fff;
  color: #000;
  padding: 10px 40px;
  margin: 10px 0;
  text-decoration: none;
  font-weight: 900;
  font-family: 'Archivo Black', sans-serif;
  
  /* This creates the R4 slant */
  /*transform: skewX(-20deg); */
  transition: 0.2s ease;
}

/* Compensate the text so it isn't slanted */
.menu-item .label {
  display: inline-block;
  /*transform: skewX(20deg);*/
}

.menu-item:hover, .menu-item.active {
  background-color: #ffcc00; /* That classic R4 yellow/orange */
  color: #000;
  margin-left: 20px; /* Moves the button slightly when selected */
}
