body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.header, .footer {
  background-color: #ffa500; /* Orange background */
  color: white; /* White text for contrast */
  text-align: center;
  padding: 15px 0;
}

.header {
  display: flex;
  justify-content: space-between; /* Space between title and hamburger */
  align-items: center; /* Vertically align elements */
  padding: 0 20px; /* Add some padding for spacing */
}

.header .submenu {
  margin-top: 10px;
  font-size: 14px;
}

.header .hamburger {
  cursor: pointer;
  display: inline-block;
  margin-left: auto; /* Pushes the hamburger to the right */
}

.header .menu {
  display: none;
  list-style-type: none;
  padding: 0;
}

.header .menu li {
  margin: 5px 0;
}

.header .menu a {
  color: white;
  text-decoration: none;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
}

.post {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px;
  width: calc(20% - 20px);
  box-sizing: border-box;
  text-align: center;
}

/* Responsive design */
@media (max-width: 1200px) {
  .post {
    width: calc(25% - 20px);
  }
}

@media (max-width: 900px) {
  .post {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 600px) {
  .post {
    width: calc(50% - 20px);
  }
}

@media (max-width: 400px) {
  .post {
    width: 100%;
  }
}

.post img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}

.post h2 {
  margin: 0;
  padding: 10px 0;
}

.about {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.founder {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

p {
  line-height: 1.6;
}

.purchase-btn {
  background-color: #ffa500; /* Orange background */
  color: white;
  border: 1px solid red; /* Thin red border */
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px; /* Extra padding below the button */
  text-align: center;
}

.purchase-btn:hover {
  background-color: #ff8c00; /* Darker orange on hover */
}

.social-icons a {
    color: #333;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #007BFF; /* Change color on hover */
}
