* {
  font-family: Roboto, Poppins, sans-serif;
  scroll-behavior: smooth;
}

body {
  font-size: 15px;
  background-color: hsl(0, 0%, 90%);
}
body, header {
  display: initial;
}

main, footer {
  max-width: 1025px;
  margin: auto;
}

#nav-bar {
  position: sticky;
  top: 0px;
  display: flex;
  height: 50px;
  background-color: hsl(0, 0%, 90%);
}

nav div {
  margin: auto;
  text-align: center;
  width: fit-content;
}

nav div > a {
  padding: 0 10px;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}

#header-img {
  max-height: 100%;
  width: clamp(175px, 30%, 350px);
  margin-right: auto;
  height: auto;
  align-self: center;
}

h1, form {
  text-align: center;
}

h1 {
  font-size: 24px;
}

form > * {
  display: block;
  margin: 5px auto;
  padding: 2px 10px 2px 10px;
}

form [type="email"] {
  width: 250px;
  height: 30px;
}


input[type="submit"] {
  width: auto !important;
  font-weight: 600;
  cursor: pointer;
}

.feature i {
  padding: 25px;
  font-size: 40px;
  color: orange;
  justify-self: center;
}

.feature {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
}

dt {
  font-size: 24px;
  font-weight: 600;
}

dd {
  margin: 0;
}

#how-it-works {
  display: flex;
}

iframe {
  width: 640px;
  height: 480px;
  margin: 100px auto;
}

#pricing {
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}

.pricing strong {
  display: block;
}

#pricing p {
  margin: 0px;
  padding: 15px;
  background-color: hsl(0, 0%, 70%);
  font-weight: 700;
}

#pricing strong {
  margin: 10px;
  font-size: 20px;
  font-weight: 700;  
  display: block;
}

ul, li {
  margin: 0px 0px 10px 0px;
  padding: 0px;
  list-style-type: none;
}

@media (max-width: 786px) {
  nav div > a {
    min-width: 50px;
    margin-left: auto;
  }

  iframe {
    width: 320px;
    height: 240px;
  }
}

#pricing div {
  border-width: 1px;
  border-style: solid;
  border-color: black;
  border-radius: 3px;
  width: 300px;
  height: 300px;
  margin: 10px;
  display: flex;
  flex-flow: column;
}

#pricing div button, input[type="submit"] {
  margin: auto auto 20px auto;
  width: 100px;
  height: 40px;
  background-color: gold;
  border: unset;
  border-radius: 3px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s linear;
}

#pricing div button:hover, input[type="submit"]:hover {
  background-color: orange;
}

footer {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  background-color: hsl(0, 0%, 70%);
  padding-top: 10px;
  padding-right: 10px;
}

footer a {
  text-align: auto;
  margin-left: 10px;
  color: inherit;
  text-decoration: none;
}

footer p {
  color: #333;
}
