Converted Text (4)
Converted Text (4)
body {
margin: 0;
padding: 0;
box-sizing: border-box;
/* Header Styles */
header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #333;
color: #fff;
}
header .logo {
font-size: 24px;
font-weight: bold;
header nav ul {
list-style: none;
display: flex;
gap: 20px;
header nav ul li a {
text-decoration: none;
color: #fff;
/* Hero Section */
#hero {
height: 100vh;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
#hero .cta-button {
background: #ff6f61;
color: #fff;
text-decoration: none;
font-size: 16px;
border-radius: 5px;
margin-top: 20px;
}
/* Collections Section */
#collections {
padding: 50px;
text-align: center;
.collection-grid {
display: flex;
gap: 20px;
justify-content: center;
.collection-item {
background: #f4f4f4;
padding: 20px;
text-align: center;
border-radius: 8px;
width: 300px;
.collection-item img {
max-width: 100%;
border-radius: 8px;
.collection-item .cta-button {
background: #333;
color: #fff;
text-decoration: none;
margin-top: 10px;
display: inline-block;
}
/* About Section */
#about {
padding: 50px;
text-align: center;
#about img {
max-width: 50%;
border-radius: 10px;
/* Footer */
footer {
background: #333;
color: #fff;
text-align: center;
padding: 20px;
footer .social-links a {
color: #ff6f61;
margin: 0 10px;
text-decoration: none;