
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.container {
    width: 80%;
	height:auto;
    margin: auto;
    text-align: center;
}
.contentarea {
    width: 80%;
    margin: auto;
	height:auto;
    text-align: center;
	color:black;
}
header {
    background-color: #343a40;
    width:auto;
    color: white;
    margin:0px;
    padding: 2px 0;
}

nav ul {
	width: auto;
    list-style: none;
    margin:0px -60px 0px -60px;
    padding: 15px 0px;
    text-align:center;
    border-radius:90px 90px 0px 0px;
}

nav ul li {
    display: inline;
    margin: 0 10px;
    
}

nav ul li a {
    color:white;
    text-decoration: none;
    font-weight:bold;
    
}

.hero {
    background:url('../images/12a.jpg') no-repeat center center/cover;
    height: 200px;
	padding: 30px 0;
    color: white;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 5px 15px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 10px;
}

.featured-products {
    padding: 2px 0;
}

.product-list {
    display: flex;
    justify-content: center;
}

.product-item {
    margin: 10px;
    padding: 10px;
    background: white;
    border-radius: 5px;
    text-align: center;
    width: 200px;
}

footer {
    background: #343a40;
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-top: 20px;
}