@import url(https://fonts.googleapis.com/css?family=Josefin+Sans|Raleway:900);
html {
  background: url(https://i.imgur.com/kyIYGDZ.png);
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  /* position and height for footer */
  position: relative;
  min-height: 100%;
}

body {
  min-width: 322px;
  margin: 0 0 75px;
  /* bottom matches footer height */
}

a {
  text-decoration: none;
}

/*------------------------------
masthead styles
-------------------------------*/
.masthead {
  background: #ffffff;
  /*position and z-index set for box-shadow to appear over statusBar*/
  position: relative;
  z-index: 10;
}

.masthead-hd-logo {
  padding: 8px;
  font: 35px Raleway;
  font-weight: bold;
}

.masthead-hd-logo-link {
  text-decoration: none;
  color: #000000;
}

.masthead-hd {
  display: inline-block;
}

.masthead-bd {
  display: inline-block;
}

.masthead-hd-logo-link-icon {
  display: inline-block;
  height: 32px;
  width: 30px;
  background: url(https://i.imgur.com/YQddQYV.png) no-repeat -30px 0;
}

.masthead-hd-logo-link-icon_hand:hover {
  background-position: -150px 0;
}

/* displays hand icon hover state when hovering on branding */
.masthead:hover .masthead-hd-logo-link-icon_hand {
  background-position: -150px 0;
}

/*------------------------------
icon styles
-------------------------------*/
.icon {
  display: inline-block;
  height: 32px;
  width: 30px;
  background: url(https://i.imgur.com/YQddQYV.png) no-repeat;
}

.icon:hover {
  cursor: pointer;
}

.icon_search {
  background-position: -60px 0;
}

.icon_smile {
  background-position: -90px 0;
}

.icon_wrench {
  width: 29px;
  background-position: 0 0;
}

.icon_search:hover {
  background-position: -180px 0;
}

.icon_smile:hover {
  background-position: -210px 0;
}

.icon_wrench:hover {
  background-position: -120px 0;
}

/*------------------------------
hList styles
--------------------------------*/
.hList > * {
  display: inline-block;
}

.hList > * + * {
  margin-left: 20px;
}

.hList-item-link {
  text-decoration: none;
}

/*------------------------------
split styles
-------------------------------*/
.split {
  height: 100%;
  width: 100%;
  display: table;
}

.split > * {
  display: table-cell;
  vertical-align: middle;
}

.split-right {
  text-align: right;
}

/*------------------------------
statusBar styles
-------------------------------*/
.statusBar {
  padding: 3px 10px;
  background: darkorange;
  color: #ffffff;
  box-shadow: 0 0 3px #808080;
  /*position and z-index for box-shadow*/
  position: relative;
  z-index: 2;
}

/*------------------------------
subNav styles
-------------------------------*/
.subNav {
  padding: 20px 10px;
  background: #ffffff;
}

.subNav-list {
  text-align: center;
}

.subNav-list-item-link {
  color: #808080;
  font-weight: bold;
}

.subNav-list > * {
  display: inline-block;
}

.subNav-list > * + * {
  margin-left: 10px;
}

.subNav-list-item-link:hover {
  color: #e984ae;
}

.subNav-list-item-link:focus {
  color: #e984ae;
}

.subNav-list-item-link:active {
  color: #e984ae;
}

.subNav-list-item-link_active {
  color: #ea0f6b;
}

.subNav-list-item-link_active:hover {
  color: #ea0f6b;
}

/*------------------------------
box styles as a container item
-------------------------------*/
.box {
  padding: 10px;
  border: 2px solid #d9d9d9;
  margin: 20px 10px;
  background: #ffffff;
  /* position for box-shadow */
  position: relative;
}

.box_bowShadow:before,
.box_bowShadow:after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 12px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: #808080;
  box-shadow: 0 15px 5px #808080;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.box_bowShadow:after {
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

/*------------------------------
 totem styles
-------------------------------*/
.totem {
  padding: 0 5px;
  line-height: 1.2;
  text-align: center;
}

.totem > * {
  margin-bottom: 10px;
}

.totem-hd {
  color: darkorange;
  font-weight: bold;
}

.totem-bd {
  color: #000000;
  font-weight: bold;
}

.totem-ft {
  color: grey;
}

/*------------------------------
footer styles
--------------------------------*/
.footer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 75px;
  /* matches body margin */
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  background: #ffffff;
}

/*------------------------------
 media query for larger screens
--------------------------------*/
@media screen and (min-width: 600px) {
  .block {
    width: calc(50% - 5px);
    display: inline-block;
  }
}
@media screen and (min-width: 850px) {
  .block {
    width: calc(33% - 5px);
    display: inline-block;
  }
}