* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PT Sans Narrow" ,Arial, Helvetica, sans-serif;
  background: #222;
  color: #dddddd;
  line-height: 1.6;
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100%;
  overflow-y: scroll; 
  scroll-behavior: smooth;
}

@media (pointer: fine) {
  .container {
    scroll-snap-type: y proximity;
  }
}

.nav {
  position: fixed;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background: rgba(0,0,0,0.6);
}

.nav ul {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  width: 100%;
  justify-content: center;
}

.nav ul li {
  margin: 0 0;
  padding: 0.3em;
}

.nav ul li a:link, .nav ul li a:visited {
  text-decoration: none;
  text-transform: uppercase;
  color: #f4f4f4;
}

@media (pointer: fine) {
  .nav ul li a:hover {
    color: mediumseagreen;
  }
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100vh;
  padding: 60px;
 }

 @media (pointer: fine) {
  section {
    scroll-snap-align: center;
  }
}

section h1 {
  font-size: 3rem;
}
section p {
  font-size: 1rem;
}

section#home {
  background:  linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)) ,url(images/fbpdStill002.jpg) no-repeat center center /cover;
}

section#social {
  background:  linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)) ,url(images/fbpdStill003.jpg) no-repeat center center /cover;
}

section#about {
  background:  linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)) ,url(images/Haunting_the_Haunted_1.jpg) no-repeat center center /cover;
}

section#contact {
  background:  linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)) ,url(images/WitchesOfWonderStill.jpg) no-repeat center center /cover;
}

.embeds {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-bottom: 20px;
}

#fb-root {
  margin-top: 20px;
}

.fb-page {
  width: 100%;
  height: 500px;
  padding: 0;
}

form {
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 25em;
  border-radius: 2em;
  overflow: hidden;
  border: none;
  margin-top: 20px;
}

input[name="_honey"] {
  display: none;
}

.input-item {
  padding: 1em;
  border: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  font-family: inherit;
  text-align: center;
  background-color: rgb(248, 248, 248);
}

textarea.input-item {
  height: 4.8rem;
  text-align: left;
}

textarea.input-item:placeholder-shown  {
  text-align: center;
}

.input-item::placeholder {
  text-transform: uppercase;
  opacity: 1;
  font-size: 0.8rem;
 }

.input-item:hover::placeholder {
  color: darkgreen;
}

.input-item:auto-fill {
  box-shadow: 0 0 0 1000px rgb(245,245,245) inset
}

.input-item[type="submit"] {
  background-color: rgb(8, 39, 8);
  color: rgb(245,245,245);
  font-size: 1rem;
  text-transform: uppercase;
}

.input-item[type="submit"]:focus {
  background-color: rgb(25, 119, 25);
}

.aboutContainer {
  max-width: 600px;
}

.icon {
  width: 50px;
}

.icons {
  margin-top: 2em;
}

