body {
  background-color: #F2F2F2;
  margin: 0px auto;
}

main {
  margin: 15vh auto;
  min-height: auto;
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

p, a, button, .success, form label, .submit, .error {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 20px;
}

p {
  max-width: 600px;
  margin: 20px auto;
  padding: 0px 20px;
}

header {
  margin: 0px auto;
  height: 15vh;
  background-color: rgba(0, 0, 0);
  position: fixed;
  width: 100%;
  top: 0;
}

nav {
  max-width: 1200px;
  margin: auto;
}

.menu{
  margin: 0px auto;
  align-items: center;
  padding-left: 0;
  height: 15vh;
}

.menu-cta {
  color: #f0b351;
  padding: 0.5em;
}

a, li {
  text-decoration: none;
  list-style: none;
}

.menu-cta:hover, .active {
  background-color: #f0b351;
  color: #000;
}

/*collecting the cursor effects*/
.submit:hover, .slider-button:hover, .notes:hover, 
.name-recent:hover, .featured-container:hover, .view-more:hover,
.notes-posts:hover  {
  cursor: pointer;
}

/*collecting the flex + justify center*/
.menu, .footer-container, .slider-button, 
.img-container, .featured-header, .featured-container,
.notes-posts    {
  display: flex; 
  justify-content: center;
}

/*footer styles*/
footer{
  background-color: #000;
  min-height: 30vh; 
}

.footer-container {
  max-width: 800px;
  margin: 0px auto;
  flex-direction: row;
  justify-content:space-around;
  flex-wrap: wrap;
  color: #f0b351;
}

.footer-container div {
  display: flex;
  align-items: center;
  width: 200px;
}

.footer-social {
  padding-left: 0;
  display: flex;
  flex-direction: row;
}

footer li {
  max-width: 50px;
  margin: 10px;
}

.footer-social img {
  max-width: 70%;
  fill: #f0b351;
}

.footer-menu ul {
  display: flex;
  flex-direction: column;
  justify-items: center;
}

/*header on about, contact, posts etc*/

.header-container {
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  display: flex; 
  align-items: center;
}

.header-text {
  background-color: rgba(13, 38, 38, 0.69);
  height: 15vh;
  width: 100%;
  display: flex;
}

.header-text h1 {
  color: #f0b351;
  max-width: 400px;
  margin: 0px auto;
  align-self: center;
}

.loader {
  width: 100px;
  height: 100px;
  margin: 20px auto;
  border-radius: 50%;
  border: solid 30px #fff;
  border-top: solid 30px #f0b351;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
