@charset "utf-8";



body {
  padding: 0;
  margin: 0;
  font-size: 16px;
}
h1{
  margin: 20px 0;
  text-align: left;
}
header,h1,section,footer{
  max-width: 640px;   
  margin-left: auto;  
  margin-right: auto; 
  padding: 0 20px;    
  box-sizing: border-box;
}
section{
  /* display: flex; */
  flex-wrap: wrap;    
  gap: 20px;          
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  width: 100%;
  box-sizing: border-box;
}
section div img{
  width: 100%;    
  height: auto;   
}
@media (max-width: 600px) {
  body {
    font-size: 14px; 
  }
}


header{
  padding-top: 20px;
  padding-bottom: 20px;
}

footer{
  text-align: center;
}

a{
  text-decoration: none;
  color: inherit;
}
a:hover{
  opacity: 0.7;
}
.product{
display: flex;
gap: 32px;
/* margin-top: 32px; */
}
.product div{
  flex: 1;
}
.product p{
  margin-top: 16px;
}
.product button{
  margin-top: 16px;
  padding: 8px 16px;
  cursor: pointer;
}

.product img{
  width: 100%;
  height: auto;
}