*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  height: 55vh;
  width: 100vw;
  background: linear-gradient(to left, #ffe259, #ffa751);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
}

.header .info {
  text-align: center;
  color: rgb(148, 23, 23);
  gap: 25px;
  display: flex;  
  flex-direction: column;
  align-items: center;
}

.header h1 {
  color:rgb(148, 23, 23);
  font-family: sans-serif;
  text-shadow: 1px 2px 3px  rgba(0, 0, 0, 0.4);

}

.header p {
  font-size: 25px;
  font-family: system ui;
  color: rgb(253, 235, 214);
  font-weight: bold;
    text-shadow: 1px 2px 3px  rgba(0, 0, 0, 0.4);
}

.header button {
  background-color: rgb(190, 46, 30);
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 animation:zoom 1.2s infinite ease-in-out ;
}

@keyframes zoom {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(0.8);
  }
}
.container {
   height: 220px;
   width: 320px; 
   background-image: url(orgjuice.png);
   background-size:cover;
   margin-top: 10px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
   animation :bounce 1.4s infinite ease-in-out;
  }
  
  @keyframes bounce {
    0% {
      transform: TranslateY(20px);
    }
    50%{
      transform: translateY(-20px);
    }
    100% {
      transform: TranslateY(20px);
    }
  }

/* Section  */
 .section {
    background: linear-gradient(to right, #f5f5f5, #f5f5f5, #f5eec0);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 10px;
    width: 100vw;
   }

 .product {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px; 
  margin: auto;
  max-width: 1600px;
  width: 100vw;
}

  .section img {
    height: 270px;
    width: 100px;
    background-size: cover;
    border-radius: 10px;
  }

  .product img:hover {
  transform: rotate(-4deg) scale(1.06);
  transition: 0.4s ease ;
}

   .section .info1 {
    font-family: 'Arial', sans-serif;
    line-height: 3.6rem;
    flex: 3;
    background: linear-gradient(to right, #f5f5f5, #e898a3);
   }

  .info1:hover {
  box-shadow: 0 0 17px rgba(255, 150, 190, 0.9);
  transform: scale(1.01);
  transition: all 0.2s 0.3s ease-in-out;
  border-radius: 10px;
}

   .section .info1 h2 {
      font-family: 'Arial', sans-serif;
      font-size: 2.2rem;
      text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4);
  }
  
 .section .info1 button {
  background-color: rgb(246, 47, 47);
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  color: white;
  margin: 7px;
 }

 .section .info1 button:hover {
  transform: scale(1.1);
  background-color: #d63434;
  transition: 0.3s;
  box-shadow: 1px 4px 3px rgb(39, 34, 34) ;
   cursor: pointer;

 }

.info1 .rating {
   color: black;
   font-size: 17px;
   font-style: italic;
   font-weight: 700;
   line-height: normal;
   padding-bottom: 10px;
   padding-left: 10px;
}

  /* article */

.back {
   background-color:#e67e22;
   padding: 6px;
   font-size: 1rem;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100vw;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

 /* footer */

 .footer {
      background-color: #222;
      color: #fff;
      width: 100vw;
      text-align: center;
      font-size: 18px;
      font-family:Arial, Helvetica, sans-serif;
      font-weight: 200;
 }

 .footer ul li {
  display: inline-block;
  padding: 15px 30px;
 }

 a {
  text-decoration: none;
  color: #fff;
 }

 .footer ul li a:hover {
  color: yellow;
  text-decoration: underline;
 }

 .footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 15px;
 }

 .footer .contact-info .para {
  font-size: 17px;
 text-decoration: underline;
 }

.footer .footer-info {
   padding: 10px;
   font-size: 18px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

  /* Media Queries */

@media (max-width:780px) {

  *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  .header {
  height: 44vh;
  padding: 4px;  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.header .info {
     display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.header h1 {
  font-size: 19px;
}

.header p {
  font-size: 17px;
}

.header button {
  padding: 8px 12px;
  font-size: 11px;
}

.container {
   height: 150px;
   width: 290px; 
   margin-top: 10px;
   padding-bottom: 5px;
   animation :bounce 1.3s infinite ease-in-out;
  }
  
  @keyframes bounce {
    0% {
      transform: TranslateY(7px);
    }
    50%{
      transform: translateY(-7px);
    }
    100% {
      transform: TranslateY(7px);
    }
  }

/* section */

 .section {
    padding: 7px 5px;
    width: 100vw;
   }

 .product {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
  padding: 4px; 
  margin: 20px auto;
  max-width: 550px;
  width: 100vw;
}

  .section img {
    height: 170px;
    width: 50px;
  }

   .section .info1 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6rem;
   }

   .section .info1 h2 {
      font-family: 'Arial', sans-serif;
      font-size: 1.3rem;
      text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.4);
  }
  
 .section .info1 button {
  padding: 7px 9px;
  font-size: 9px;
 }

 .section .info1 button:hover {
  transform: scale(0.9);
 }

.info1 .rating {
   font-size: 10px;
   font-weight: 700;
   padding-bottom: 5px;
   padding-left: 5px;
}

.back {
   padding: 4px;
   font-size: 0.9rem;
}

   /* footer */

   .footer {
      font-size: 12px;
     padding: 4px;
 }

 .footer ul li {
  display: inline-block;
  padding: 5px 12px;
 }

 .footer ul li a:hover {
  font-size: 10px;
 }

 .footer .contact-info {
    gap: 0.2rem;
    font-size: 11px;
 }

 .footer .contact-info .para {
  font-size: 15px;
 }

.footer .footer-info {
   padding: 7px;
   font-size: 12px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


}


