html
{
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: black;
    scroll-behavior:smooth;
}

header
{
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;

    h1
    {
        width: fit-content;
        padding: 6px;
        margin: 0px;
        font-family: cursive;
    }
}

nav
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: black;
    padding: 8px;
    gap: 8px;

    div
    {
        transition: all 0.3s ease-in-out;
        background-color: black;
        border-radius: 4px;

        h3
        {
            user-select: none;
            transition: all 0.3s ease-in-out;
            margin: 8px;
            margin-inline: 12px;
            color: white;
        }
    }
    div:hover
    {
        cursor: pointer;
        h3
        {
            color: black;
        }
        background-color: white;
    }
}

.home
{
    img
    {
        position: absolute;
        object-fit:cover;

        width: 100%;
        height: 600px;

        opacity: 0.45;
        z-index: -1;
    }
    div
    {
        width: 100%;
        height: 600px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        h1
        {
            color: white;
            margin: 0px;
            padding: 0px;
        }
        p
        {
            margin: 8px;
            padding: 0px;
            width: 60%;
            color: white;
            text-align: center;
        }
    }
}

.menu
{
    color: white;
    display: grid;
    grid-template-columns: 70% 30%;
    grid-template-rows: fit-content;

    h2
    {
        margin: 0px;
    }
    h3
    {
        margin: 0px;
    }
    p
    {
        margin: 0px;
    }

    section
    {
        padding: 16px;
        background-color: white;

        h2
        {
            color: black;
        }
        p
        {
            color: black;
        }
    }
    aside
    {
        padding: 16px;
        background-color: black;
    }
}

.item-container
{
    border: black solid 1px;
    border-radius: 8px;
    padding: 12px;

    margin-block: 12px;

    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);

    img
    {
        width: auto;
        height: 120px;
    }
    h3, p
    {
        padding: 4px;
    }
}

.best-seller-container
{
    margin-block: 8px;
    background-color: white;
    
    padding: 8px;
    border-radius: 4px;
    font-weight: bold;
    color: black;

    transition: all ease-in-out 0.3s;

    user-select: none;
}
.best-seller-container:hover
{
    cursor:default;

    margin-block: 8px;
    background-color: black;
    
    padding: 8px;
    border-radius: 4px;
    font-weight: bold;
    color: white;
}

.black-text-normalize
{
    h1, h2, h3, p
    {
        color: black;
    }
}

.button-main
{
    all: unset;

    background-color: white;
    color: black;
    padding: 10px;
    padding-inline: 16px;

    font-weight: bold;

    border-radius: 4px;

    transition: all 0.3s ease-in-out;

    cursor: pointer;
}
.button-main:hover
{
    background-color: black;
    color: white;
}

.button-secondary
{
    all: unset;

    background-color: rgb(128, 208, 220);
    color: white;
    padding: 10px;
    padding-inline: 16px;

    font-weight: bold;

    border-radius: 4px;

    transition: all 0.3s ease-in-out;

    cursor: pointer;
}
.button-secondary:hover
{
    background-color: black;
    color: white;
}

footer
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(127, 201, 218);

    h3
    {
        margin: 0px;
        margin-top: 4px;
        font-size: small;
        color: white;
    }
    p
    {
        color: white;
        margin: 4px;
        font-size: smaller;
    }
}