*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f4f4f4;
}

header{
    background:#222;
    color:white;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav a{
    color:white;
    text-decoration:none;
    margin:10px;
}

.hero{
    text-align:center;
    padding:80px 20px;
    background:#ffe4c4;
}

.hero h2{
    font-size:40px;
}

.hero p{
    margin:20px;
    font-size:20px;
}

button{
    padding:12px 25px;
    background:#000;
    color:white;
    border:none;
    cursor:pointer;
}

button:hover{
    background:crimson;
}

.products{
    display:flex;
    justify-content:center;
    gap:20px;
    padding:50px;
    flex-wrap:wrap;
}

.card{
    background:white;
    width:250px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 0 10px rgba(0,0,0,.2);
    padding:20px;
}

.card img{
    width:100%;
    border-radius:10px;
}

.card h3{
    margin:15px 0;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
}