/* FLYER PAGE CSS */

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
body {
  margin: 0;
  background-color: #FBEFF3;
}
/*header 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: 0 auto; /* "auto" centers it*/
  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;
}
.col {
  width: calc((100% - 50px) / 3);
  margin-bottom: 25px;
  float: left;
}
.col-center {
  width: calc((100% - 50px) / 3);
  float: left;
  margin: 0 25px;
  margin-bottom: 25px;
}
img {
  width: 100%;
  float: left;
}

footer {
  width: 80vw;
  margin: 50px auto 50px;
  border-top: 3px solid #6F329A;
  margin: 50px 0 0 0 auto;
  padding: 50px 0 0 0;
}
footer p {
  font-size: 15px;
  font-weight: bold;
  color: #0B050F;
}

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