/* cheeto.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
  min-height: 100vh;
}

header {
  background-color: #222;
  padding: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.nav-links li {
  display: inline-block;
  margin-left: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff6f00;
}

main {
  flex: 1;
  display: flex;
  padding: 140px;
  justify-content: center;
  align-items: center;
}

.cheeto {
  padding: 80px 20px;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.cheeto h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.cheeto p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #bbb;
}

.products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.product {
  background-color: #222;
  border-radius: 4px;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-10px);
}

.product h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.product img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #ff6f00;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e65c00;
}

footer {
  background-color: #222;
  padding: 30px;
}

/* Media Queries for Mobile Devices */

@media (max-width: 768px) {
  main {
    padding: 20px;
  }
  
  .cheeto {
    padding: 40px 20px;
  }

  .cheeto h2 {
    font-size: 24px;
  }

  .product {
    width: calc(50% - 40px);
    max-width: none;
  }
}
