/* basic style definition */
/* •••••••••••••••••••••••••••••••• */
body {
  -webkit-font-smoothing: antialiased;
  font-family: "Times New Roman", Times, serif;
}
h1 {
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  font-weight: 300;
}


h2 {
font-weight: 200;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: center;
	margin: 0;
}

p {
	font-weight: 300;
	color: #000000;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: center;
	margin: 0;
}
a {
  text-align: center;
  text-decoration: none;

}

a:visited {
	color: #00f;
	text-decoration: none;
}

/* Navigation menu */
/* •••••••••••••••••••••••••••••••• */
.menu {
  position: fixed;
  width: 100vw;
  pointer-events: none;
  margin-top: 65vh;
  text-align: center;
  z-index: 2;
}
/* Menu link item */
.menu__link {
  display: inline-block;
  text-decoration: none;
  color: #00f;
  pointer-events: auto;
  line-height: 40px;
  position: relative;
  padding: 0 50px;
  box-sizing: box;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
}
.menu__link:before {
  content: ;
	background-color: #000000;
	color: #00F;
	position: absolute;
	top: 100%;
	bottom: 0;
	left: 0;
	-webkit-transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
	transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
	right: 0;
}
.menu__link:hover:before {
  top: 0;
}
/* Panels Style*/
/* •••••••••••••••••••••••••••••••• */
/* Common panel style */
.panel {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: bottom;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -4px;
	right: 0;
	overflow: auto;
	z-index: 999;
	color: #000;
	box-sizing: border-box;
	background-color: #FFF;
}
/* panel content (only for animation delay after open) */
.panel-content {
  opacity: 0;
  will-change: margin-top;
  -webkit-transition: all 700ms;
          transition: all 700ms;
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
  padding: 100px 200px;
  margin-top: -5%;
}
/* Panel content animation after open */
.panel:target .panel-content {
	opacity: 1;
	margin-top: 0;
}
/*  Specific "Home "panel */
/* •••••••••••••••••••••••••••••••• */
.panel#home {
	z-index: 1;
	background: #fff;
}
/*  Specific panel "Slice" */
/* •••••••••••••••••••••••••••••••• */
.panel#slice {
  background-color: #fff;
  -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.56, 1);
          transition: all 800ms cubic-bezier(0.19, 1, 0.56, 1);
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);

}
.panel#slice:target {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	background-color: #FFF;
}
