body {
    font-family: Arial;
    margin: 0;
    background-color: #f5f5f5;
}

header {
    background-color: black;
    color: white;
    padding: 15px;
    text-align: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    text-align: center;
    justify-content: center;

}

nav a {
    color: white;
    text-decoration: none;
    margin: 10px;
}

.hero {
    text-align: center;
}

.hero img {
    width: 100%;
    height: 450px;
    object-fit: cover;

}

section {
    padding: 20px;
    margin: 20px;
    background: white;
}

.categories {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.categories div {
    text-align: center;
}

.categories img {
    width: 200px;
    margin: 50px;
}

footer {
    text-align: center;
    background: black;
    color: white;
    padding: 10px;
}


.categories div:hover {
    transform: scale(1.05);
    transition: 0.3s;
}
