Website for clothing brand

/* Global Styles */

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

body {
font-family: ‘Helvetica Neue’, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
}

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

img {
max-width: 100%;
}

/* Header */

header {
background-color: #fff;
border-bottom: 1px solid #ddd;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
}

nav ul {
display: flex;
list-style-type: none;
}

nav ul li {
margin-right: 2rem;
}

nav ul li:last-child {
margin-right: 0;
}

nav ul li a:hover {
border-bottom: 2px solid #333;
}

/* Hero */

#hero {
background-image: url(‘hero.jpg’);
background-size: cover;
background-position: center;
height: 50vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
}

#hero h1 {
font-size: 4rem;
margin-bottom: 1rem;
}

#hero p {
font-size: 1.5rem;
margin-bottom: 2rem;
}

#hero .btn {
display: inline-block;
background-color: #333;
color: #fff;
padding: 1rem 2rem;
border-radius: 4px;
transition: background-color 0.3s ease;
}

#hero .btn:hover {
background-color: #fff;
color: #333;
}

/* Featured Products */

#featured-products {
background-color: #f5f5f5;
padding: 4rem 0;
}

#featured-products h2 {
text-align: center;
margin-bottom: 2rem;
}

.product {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 2rem;
}

.product img {
margin-bottom: 1rem;
}

.product h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

.product p {
text-align: center;
margin-bottom: 1rem;
}

.product .btn {
background-color: #333;
color: #fff;
padding: 0.5rem 1rem;
border-radius: 4px;
transition: background-color 0.3s ease;
}

.product .btn:hover {
background-color: #fff;
color: #333;
}

/* About Us */

#about-us {
padding: 4rem 0;
text-align: center;
}

#about-us h2 {
margin-bottom: 2rem;
}

#about-us p {
margin-bottom: 2rem;
}

#about-us .btn {
background-color: #333;
color: #fff;
padding: 1rem 2rem;
border-radius: 4px;
transition: background-color 0.3s ease;
}

#about-us .btn:hover {
background-color: #fff;
color: #333;
}

/* Footer */

footer {
background-color: #333;
color: #fff;
padding: 2rem;
text-align

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.