/*child of main div
.child { 
  display: flex;
  
  align-items: flex-start;
  width: 2500px;


  padding: 10px;
}

.about {
  
}

.aboutImg {
 border: 3px solid black;
 gap: 10px;
 border: 3px solid black;  
 
}

*/
#main {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  height: auto;
  background-image: url("./photoes/background.jpg");
  background-size: cover;        
  background-position: center;
  background-repeat: no-repeat;  
  background-attachment: fixed;  
  padding: 20px;

}
.main
{
 
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  padding: 3px;
  gap: 10px;

}

.child
{
   
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;            
  margin-bottom: 2px;

}

.about
{  background-color: #e6e2e2;
  padding: 12px 15px;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  width: 300px;
  height: 200px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.aboutImg
{
  border: 3px solid black;
  padding: 10px;
  width: 300px;
  height: 300px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  
}
.aboutImg img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.aboutImg:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.about:hover {
  background-color: #d4cccc;
  transition: background-color 0.3s ease;
}
.button
{
  color: rgb(249, 246, 246);
  width: 200px;
  background-color: rgba(9, 73, 202, 0.932);
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 8px;
 
  cursor: pointer;
  width: 100px;
}

.button:hover
{
  background-color: rgba(2, 45, 128, 0.932);
  transition: background-color 0.3s ease;
}

.cart {

  display: flex;
  justify-content: center;
  width: 25%;
  gap: 40px;
 

}
.site-header {
  background: linear-gradient(135deg, #cb9911eb, #57fc25e7); 
  color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 0 0 15px 15px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-family: "Poppins", Arial, sans-serif;
}

.site-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.site-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f444;
}