html {
    background-size: 800% 800%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

/* Page Default */
div.pagebody {
    text-align: center;
}

/* Small Navigation */
nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    margin: 10px;
    list-style: none;
}

nav li {
    padding: 2px;
}

nav a {
    text-decoration: none;
    font-weight: bold;
    color: black;
    padding: 4px;
}

nav a:hover {
    color: blue;
}

/* Categories Title */
div.title>h1 {
    text-decoration: underline;
    font-size: 30px;
    padding: 5px;
}

/* Categories */
div.categories {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

div.items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    padding: 0px;
    margin: 0px;
}

div.item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 5px;
    padding: 8px;
    border: 10px dashed blanchedalmond;
    text-align: center;
    width: 100%;
    height: 100%;
}

div.item>img {
    width: 100%;
    height: 35em;
    margin: 10px;
}

div.item>h4 {
    padding: 10px;
}

div.item>h4>a {
    color: black;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s linear;
}

div.item>h4>a:hover {
    color: aqua;
    text-shadow: rgba(0, 0, 0, 0.5) 0px 15px 4px;
    animation: 5s infinite linear colors;
}