html{
  margin: 0;
}
body{
  width: 100vw;
  margin: 0;
  background-color: linen;
  font-family: 'Lato', sans-serif;
  min-width: 398px;

}
header{
  z-index: 1;
  position:fixed;
  top:0;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  background-color: #eee;
  font-family: 'Lato', sans-serif;
  display: flex;

}
h2{
  margin: 0;
  text-align: center;
}
p{
  margin-top: 10px;
  margin-bottom: 10px;

}
footer{
  background-color: #eee;
  width: 100%;
  margin-top: 50px;
  overflow: hidden;  
}
footer > span {
    margin-top: 5px;
    display: flex;
    justify-content: flex-end;
    font-size: 0.9em;
    color: #444;
    padding-right: 10px;
}
a{
  text-decoration: none;
  color: black;
}
ol, ul{
  padding-left: 0;

}
li{
  list-style: none;
}
#nav-bar ul{
  display: flex;
  width: 100%;
  gap: 20px;
}

#form{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  margin-top: 10px;

}
#email{
  width: 70%;
}
#submit{
  width: 30%;
  height: 30px;
  margin: 15px 0;
  border: 0;
  background-color: #f1c40f;
}
#features{
  padding-top: 60px;
  display: flex;
  flex-direction: column;
}

#how-it-works{
  padding-top: 60px;

}

#header-img-container{
  width: 60vw;
}

#header-img{
  width: 100%;
  height: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 20px;  
}

#pricing{
  padding-top: 60px;
  justify-content: center;
  width: 100%;
  gap: 10px;
  display: flex;
}

.container{
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

}
.feature{
  display: flex;
  justify-content: space-evenly;

}
.feature-icon{
  width: 10%;
  height: 10%;
  color: darkorange;
}

.feature-information{
  width: 60%;
}

.product{
  border: 1px solid darkorange;
  width: 25%;
  text-align: center;
}

.footer-links{
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
  gap: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 600px) {
  #header-img-container{
    width: 40vw;
  }
  #pricing{
  margin-top: 50px;
  flex-direction: column;
  align-items: center;
  }
  .product{
    width: 90%;
    text-align: center;
  }
}

