* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}

header {
    background: #333;
    color: white;
    padding: 20px;
}

header img {
    width: 100px;
    margin-top: 10px;
}

nav {
    background: #444;
    padding: 15px;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    background: #ff6666;
    margin: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    border: 0.5px solid #fdfcfc;
    cursor: pointer;
    transition: 0.3s;
}

nav ul li:hover {
    background: #fff;
    color: #ff6666;
    border: 0.5px solid #ff6666;
}

main {
    padding: 20px;
}

#category {
    margin-top: 20px;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: inline-block;
    min-width: 300px;
}

#category {
    margin-top: 20px;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: inline-block;
    min-width: 300px;
}

#category ul{
    display: flex;
}

#category ul li{
    flex: 1;
    list-style-type: none;
    padding: 10px;
    margin: 10px;
    line-height: 2;
    background-color: #ff6666;
    border-radius: 10px;
    color: #333;
    font-weight: 600;
}



#category ul li a{ 
    text-decoration: none;
    color: #333;
    font-weight: 600;
}
