body {
background-image: url("https://cdn.pixabay.com/photo/2017/08/30/11/50/stripe-2696784_640.png");
margin: 0;
font-family: Arial, sans-serif;
}
.container {
height: 100vh;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.navbar {
background-color: #333;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
position: fixed;
top: 0;
width: 100%;
z-index: 1;
}
.navbar button {
background-color: red;
color: #fff;
cursor: pointer;
padding: 10px 15px;
border: none;
outline: none;
font-size: 18px;
}
.navbar button:hover {
background-color: #fff;
color: #333;
}
ul {
display: flex;
list-style-type: none;
margin: 0;
padding: 0;
}
li {
margin: 0 10px;
}
li a {
color: #fff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #fff;
color: #333;
}
button {
padding: 10px 20px;
border-radius: 5px;
background-color: red;
color: #fff;
border: none;
font-size: 14px;
cursor: pointer;
}
.product-section {
background-color: #fff;
padding: 20px;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
text-align: center;
}
.product-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.product-item {
width: 60%;
background-color: #fff;
margin: 10px;
padding: 20px;
text-align: center;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.product-item img {
width: 100%;
margin-bottom: 20px;
}
.product-item h2 {
font-size: 18px;
margin-bottom: 10px;
}
.product-item p {
font-size: 14px;
color: #333;
margin-bottom: 10px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
@media only screen and (max-width: 600px) {
.navbar {
flex-wrap: wrap;
justify-content: center;
}
.navbar button {
display: block;
margin: 10px 0;
}
ul {
flex-wrap: wrap;
justify-content: center;
}
.product-section {
padding: 10px;
}
.product-item {
width: 100%;
margin: 5px;
padding: 10px;
}
}