* {
  box-sizing: border-box;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: pink;
  height: 80px;
  padding: 0px 15px;
}

.headerLink {
  margin-right: 10px;
  text-decoration: none;
  color: black;
  font-size: 18px;
}

/* .headerimg {
  display: none;
} */

.icon {
  width: 50px;
  height: 50px;
}

.banner {
  background-image: url("banner.jpg");
  height: 400px;
  position: relative;
  margin-bottom: 30px;
}

.chilBanner {
  text-align: center;
  position: absolute;
  top: 30px;
  left: 0px;
  right: 0px;
}

.card {
  display: flex;
  justify-content: center;
  margin: 30px 0px;
  flex-wrap: wrap;
}

.imgResDiv {
  flex: 25%;
}

.imgDiv {
  /* width: 200px; */
  border: 1px dashed black;
  border-radius: 30px;
  /* margin-right: 30px; */
  /* flex: 25%; */
  margin: 20px;
}
.imgDiv img {
  width: 100%;
  border-radius: 30px 30px 0 0;
}

.imgDiv h3 {
  text-align: center;
  color: red;
}

.imgDiv p {
  padding: 0px 20px;
  text-align: center;
}

.imgDiv .pricePurchaseDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.imgDiv .price {
  color: red;
  font-size: 28px;
}

.imgDiv .purchase {
  padding: 15px 10px;
  border-radius: 30px;
  border: none;
  background-color: green;
  color: white;
  width: 100px;
}

/* .formGeneral {
  background-color: lightgray;
  margin: 150px 0px;
  padding: 20px;
  margin: 10px 278px;
}

.formElement {
  width: 100%;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 8px 0px;
  box-sizing: border-box;
  border: 1px solid red;
} */

.btnSubmit {
  width: 100%;
  padding: 13px 0px;
  background-color: lightgreen;
  border: none;
  color: white;
  margin-top: 20px;
}
/* .formElement:focus {
  background-color: aquamarine;
}

.formElement:hover {
  background-color: red;
} */

.footer {
  height: 150px;
  background-color: lightcoral;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 30px;
}

.footerList {
  list-style-type: none;
}

.footerList li {
  margin-top: 10px;
}

.footerList a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.mobileIcon {
  display: none;
}

@media screen and (max-width: 900px) {
  .imgResDiv {
    flex: 50%;
  }
}

@media screen and (max-width: 600px) {
  .header {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .mobileIcon {
    display: block;
  }
  .headerimg {
    display: none;
  }
  .mobileLinkDisplay {
    display: none;
  }
  .mobileLink {
    display: flex;
    flex-direction: column;
  }
  .card {
    flex-direction: column;
  }

  .imgResDiv {
    flex: 100%;
  }
  .imgDiv {
    /* width: 100%; */
    margin-bottom: 30px;
  }
  /* .formGeneral {
    width: 100%;
    box-sizing: border-box;
    margin: 0px;
  } */
  .footer {
    flex-direction: column;
    height: auto;
  }

  .footerList {
    display: flex;
    padding: 0;
  }
  .footerList li {
    margin-right: 10px;
  }
}
