@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,600');

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "proxima-nova", sans-serif;
  font-size: 1rem;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

#hero {
  background-image: url(../images/Mormon.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  min-height: 80svh;
  color: white;
  text-align: center;
  padding: 1em;
}

#hero h1 {
  font-size: 3em;
}

#hero button {
  font-size: 2em;
  padding: .5em 2em;
  border: none;
  border-radius: .5em;
  color: white;
  background-color: var(--yellow);
  margin-bottom: 1em;
}

#hero button:hover {
  transform: scale(1.1);
}

#about {
  padding: 2em;
  background-color: var(--primary-background);
  color: white;
}

#about h2 {
  font-size: 2em;
  text-align: center;
}

#about p {
  max-width: 600px;
  margin-inline: auto;
}

