/***** TYPECLASS CSS *****/
* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
body {
  margin: 0;
  background-color: #FBEFF3;
}
/*heaader styles*/
header {
  font-weight: 800;
  font-style: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flow-root;
  padding: 25px 0;
  width: 80vw;
  margin: 0 auto;
}
nav {
  float: right;
}
.site-title, nav {
  width: 50%;
  float: left;
}
.site-title p { /* Gets rid of extra margin defaults from fonts*/
  margin: 0;
}
.bar {
  width: 100vw;
  height: 80px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  background-color: #430D4B;
}
nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  float: right;
}
nav li {
  padding: 0;
  margin: 0 0 0 50px;
  float: left;
}
.current {
  color: #C874B2;
  text-decoration: underline #C874B2;
}

/*****MAIN STYLES*****/
main {
	width: 80vw;
	margin: 25px auto;
	display: flow-root;
}
.page-title p {
  width: 80vw;
  margin: 0px auto;
  padding-bottom: 60px;
  padding-top: 40px;
  font-size: 100px;
  font-family: "Righteous", sans-serif;
  font-style: normal;
  color: #22072E;
}
.card-container {
	width: 60vw;
	margin: 25px auto;
	display: flow-root;
}
img {
	max-width: 100%;
}
.back {
	margin-bottom: 50px;
}

/*****TEXT STYLES*****/
#note {
	font-size: 1vw;
}

/* CARD STYLES */
.flip-card {
	width: 100%;
	height: 43vw;
	border: none;
	perspective: 1000px;
	float: left;
	display: flow-root;
	margin-bottom: 2vw;

}
/* This container is needed to position the front and back side */
.flip-card-inner {
  	position: relative;
  	width: 100%;
  	height: 100%;
  	text-align: center;
  	transition: transform 0.8s;
  	transform-style: preserve-3d;
}
/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
 }
 .flip-card-back {
  transform: rotateY(180deg);
}

/*****PSEUDO-CLASSES*****/
a {
  text-decoration: none;
  color: #FBEFF3;
}
a:visited {
  color: #FBEFF3;
}
a:hover {
  color: #C874B2;
}