body{
    font-family: Arial,  sans-serif;
    margin:0;
    padding: 0;
    line-height: 1.6;
    background-color: powderblue;
    color:#333;
}
h1{
    color:blue;
}
p{
    color:red;
}

header, footer{
background: #333;
color:#fff;
text-align: center;
padding: 1rem;
}
nav a{
    color: #fff;
    margin: 0 10px;
}
.hero{
    height:100vh;
    background-image: url('images/hero copy.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:#111;
    font-size: large;
    text-align: center;
}
section{
    padding: 2rem 1rem;
}
.container{
    width:90%;
    max-width:1000px;
    margin:auto;
}
.Gallery, .products, .projects, .index, .about {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.Gallery img, .product img, .projects img ,.index img, .about img{
    width:100%;
    border-radius: 5px;
}
.product,.projects, .about, .Gallery, .index{
    background:#fff;
    padding:1rem;
    border:1px solid #ddd;
    text-align: center;
    border-radius: 5px;
}
.btn{
    display:inline-block;
    background:#222;
    color:#fff;
    padding:0.5rem 1rem;
    margin-top: 1rem;
    border-radius: 5px;
}
.btn:hover{
    background: #444;
}