body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

.container {
  width: 800px;
  margin: auto;
}

header {
  max-width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

header img {
  width: 2800px;
}

.intro-content {
  text-align: center;
}

.intro-content h1 {
  font-size: 48px;
}

.intro-content h2 {
  font-size: 36px;
}

.products-content {
  border: solid black 1px;
  padding: 16px;
}

.products {
  max-width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 16px;
  justify-content: space-between;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 4px;
}

.product-name {
  margin: 0;
}

.product-description {
  margin: 0;
}

.product-image {
  width: 300px;
  display: block;
}

footer {
  background-color: rgb(240, 240, 240);
  margin-top: 56px;
  margin-bottom: 0px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}


@media (max-width: 768px) {
  header {
    height: 600px;
  }

  header img {
    width: 1200px;
  }

  .container {
    width: 300px;
  }

  .products {
    display: flex;
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }
}