body 
{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #fff;
    padding: 1em;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    cursor: pointer;
}

.menu-icon span {
    width: 20px;
    height: 2px;
    background-color: #333;
    margin-bottom: 5px;
}

.hero {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('ass');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.product-categories {
    padding: 2em;
}

.product-categories h2 {
    font-size: 24px;
    margin-bottom: 1em;
}


.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.category {
    background-color: #fff;
    padding: 30px;
    border: none;
    border-radius: 0.25em;
}

.category img {
    width: 100%;
    height: 100%;
    object-fit:fill;
    border-radius: 0.25em 0.25em 0 0;
}

.category h3 {
    font-size: 18px;
    margin-bottom: 0.5em;
}

@media only screen and (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}