/* HOME PAGE CSS */

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
body {
  margin: 0;
  background-color: #F5D6E0;
}

/* 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;
}
nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  float: right;
}
nav li {
  padding: 0;
  margin: 0 0 0 50px;
  float: left;
}

/* main styles */
main {
  width: 80vw;
  margin: 0 auto; /* "auto" centers it*/
  display: flow-root;
}
.site-title {
  width: 80vw;
  margin: 0 auto;
}
.site-title p {
  font-size: 200px;
  font-weight: 800;
  font-family: "Righteous", sans-serif;
  font-style: normal;
  margin: 400px 0 100px 0;
  color: #22072E;
}
footer {
  width: 80vw;
  margin: 50px auto 50px;
  border-top: 3px solid #C874B2;
  margin: 50px 0 0 0 auto;
  padding: 50px 0 0 0;
}
footer p {
  font-size: 15px;
  font-weight: bold;
  color: #22072E;
}

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