body {
    font-family: 'Poppins', sans-serif;
    margin: auto;
    padding: auto;
    background-image: url(Background.jpg);
    color: rgb(0, 0, 0);
}
.container{
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #ddddc9;
}
nav ul li a {
    display: block;
    color: rgb(100, 100, 100);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav li {
    float: left;
}
 
nav li a:hover:not(.active) {
    background-color: #ddd1d1;
}
.categories {
    text-align: center;
    padding: 50px;
}

.categories h2 {
    font-size: 28px;
    font-weight: 600;
}

.categories span {
    color: #ff4a57;
}

.category-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.image{
    width: 350px;
    height: 350px;
    border-radius: 10px;

}
.category {
    background: #d8d8d8;
    color: rgb(0, 0, 0);
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: 500;
}
.category img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
}

.category p {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    color: #333;
}
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}