.nutrition {
  max-width: 50%;
  height: auto;
  border: 1px solid #51471A;
  border-radius: 10px;
  align-items: center;
}

h1, h2 {
  text-align: center;
  font-size: 2.5em;
}

table {
  width: 65%; 
  border-collapse: collapse; 
  margin: 20px 0; 
  font-family: 'Arial', sans-serif; 
  background-color: #f9f9f9; 
  margin-left: auto;
  margin-right: auto;
}

th {
  background-color: #4CAF50; 
  color: white; 
  padding: 12px; 
  text-align: left; 
  font-weight: bold; 
  border: 1px solid #ddd; 
}

td {
  padding: 5px; 
  border: 1px solid #ddd; 
  text-align: center; 
  background-color: #fff; 
}

tr:hover {
  background-color: #f1f1f1; 
}

tr:nth-child(even) {
  background-color: #f2f2f2; 
}

tr:nth-child(odd) {
  background-color: #ffffff; 
}

caption {
  font-size: 1.5em; 
  margin-bottom: 10px; 
  font-weight: bold; 
}

@media screen and (max-width: 768px) {
  table {
      width: 100%; 
      font-size: 0.9em; 
  }

  th, td {
      padding: 8px;
  }
}

caption {
  font-size: 1.8em; 
  font-weight: bold; 
  color: #333;
}

caption:hover {
  background-color: #45a049;
  cursor: pointer;
}

iframe {
  width: 50%;
  height: 500px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  overflow: hidden;
  display: block;
  margin: 20px auto;
}

h2 {
  text-align: center;
}

p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.5px;
  background-color: #f9f9f9;
  padding: 10px;
  border-left: 4px solid #4CAF50;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

p em {
  color: #4CAF50;
  font-style: italic;
}

footer {
  background-color: #ffffff;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

footer a {
  color: #4CAF50;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

footer a:hover {
  background-color: #4CAF50;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  footer a {
      font-size: 1em;
      padding: 6px 12px;
  }
}


  
  
  
