.categories-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
body{
    background-color: #ADD7FF;
}

.category-card{
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0, 8px, 20px rgba(0, 0, 0, 0.6);
    transition: 0.3s ease;

}
.category-card:hover{
    transform: translateY(-4px);
}


.viewBtn{
    margin-top: 10px;
    padding: 10px 36px;
    border: 2 px solid gray;
    background: black;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-color: black;
    color: white;
    padding: 10px 10px;
}

.nav{
    display: flex;
    justify-content: space-evenly;
    margin-right: 10px;
    gap: 20px;
}
.nav a{
    text-decoration: none;
    color: white;
}
.nav a:hover{
    color: blue;
}

@media (max-width: 768px) {
    .header{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}