<!DOCTYPE html>
Fashion Showcase
Encano Fashion Products Showcase
Shrub Clothes
Explore our exclusive collection of shrub clothes.
Shoes
Step into style with our latest shoes.
/* styles.css */
/* Global Styles */
- {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
main {
max-width: 1200px;
margin: 40px auto;
display: flex;
flex-direction: column;
align-items: center;
}
section {
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #333;
margin-bottom: 10px;
}
img {
max-width: 100%;
height: auto;
margin-bottom: 10px;
}
a {
color: #337ab7;
text-decoration: none;
}
a:hover {
color: #23527c;
}
#footer {
text-align: center;
padding: 10px;
background-color: #333;
color: #fff;
margin-top: 20px;
}