header {
  display: flex;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  align-items: center;
  padding: 0 48px;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: white;
}

header > h1 {
  font-size: 24px;
}

header > nav > a {
  margin-left: 16px;
  text-decoration: none;
  color: black;
}

.banner {
  background-color: rgb(210, 228, 254);
  color: rgb(0, 105, 255);
  height: 100px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 80px;
  padding: 16px;

  display: flex;
  align-items: center;
}

.banner > p {
  width: 80%;
}

#dismiss:checked ~ .banner {
  display: none;
}

#dismiss {
  display: none;
}

.dismiss-button {
  color: rgb(0, 105, 255);
  position: absolute;
  top: 4px;
  right: 4px;
  border: 1px solid rgba(0, 105, 255, 0.2);
  padding: 4px 8px;
  font-size: 12px;
}

.display-picture {
  background-image: url("https://images.unsplash.com/photo-1566814534947-46a09bcbb88c?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=919&q=80");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  position: sticky;
  top: 0;
  z-index: -1;
  margin-top: 80px;
}

main {
  padding: 48px;
  padding-top: 0;
  background: white;
}

main h1 {
  font-size: 36px;
  margin-bottom: 36px;
}

main p {
  line-height: 18px;
  font-size: 14px;
  margin-bottom: 16px;
}

section {
  padding-top: 104px;
}

#products {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-wrapper {
  display: flex;
  justify-content: space-around;
  width: 900px;
  flex-wrap: wrap;
}

.product {
  box-shadow: 0px 0px 6px #e6e6e6, 2px 0px 8px #e6e6e6;
  margin-bottom: 24px;
}

.product-details {
  padding: 8px 16px;
}

.product-name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.product-description {
  font-size: 14px;
  line-height: 18px;
}

.product-price {
  font-weight: 600;
  line-height: 24px;
}

.product-price::before {
  content: "$";
}

form label {
  display: block;
  position: relative;
  top: -4px;
}

.form-row {
  display: flex;
}

.form-field {
  margin-right: 8px;
  margin-bottom: 16px;
  flex: 1;
}

input,
textarea {
  padding: 8px;
  width: 100%;
}

button {
  padding: 8px;
}
