* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  display: block;
}
body {
  background-color: #817b7b;
  font-family: Lato, sans-serif;
}
#page-wrapper {
  position: relative;
}
header {
  width: 100vw;
  position: fixed;
  top: 0;
  min-height: 75px;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #c7c3c3;
}
#header-img {
  width: 200px;
  padding-bottom: 8px;
}
.logo {
  width: 60vw;
}
.logo > img {
  width: 100%;
  height: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 20px;
}
nav {
  font-weight: 600;
}
nav > ul {
  width: 25vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: black;
}
.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 200px;
  margin-top: 75px;
}
h2 {
  display: block;
  font-weight: bold;
  margin-bottom: 15px;
}
form {
  display: block;
}
#hero input[type="email"] {
  max-width: 275px;
  width: 100%;
  padding: 5px;
}
#hero input[type="submit"] {
  max-width: 150px;
  width: 100%;
  height: 30px;
  margin: 15px 0;
  border: 0;
  background-color: #f1c40f;
}
.btn {
  font-size: 1em;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0 20px;
  border-radius: 5px;
  cursor: pointer;
}
.btn:hover {
  background-color: #c0a94d;
}
.grid {
  display: flex;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 20px;
  background-color: #c7c3c3;
  border-radius: 5px;
}
#features .icon {
  align-items: center;
  justify-content: center;
  height: 125px;
  width: 20vw;
}
#features .desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 125px;
  width: 80vw;
  padding: 5px;
}

img {
  width: 100px;
  padding-top: 10px;
}
.icon {
  text-align: center;
}
#how-it-works {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
#video {
  position: relative;
  object-fit: cover;
  width: 550px;
  height: 300px;
  border: none;
}
#pricing {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}
.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 3px;
  width: 300px;
  height: 300px;
  margin-bottom: 10px;
}
.product > .level {
  background-color: #ddd;
  color: black;
  padding: 15px 0;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
}
.product > h2 {
  margin-top: 15px;
}
h2 {
  display: block;
}
.product > button {
  border: 0;
  margin: 35px 0;
  background-color: #f1c40f;
  font-weight: 400;
  padding: 8px 20px 8px 20px;
  font-family: Lato, sans-serif;
  cursor: pointer;
}
footer {
  margin-top: 30px;
  background-color: #c7c3c3;
  padding: 20px;
}
footer > ul {
  display: flex;
  justify-content: flex-end;
}
footer > ul > li {
  padding: 0 10px;
}
