body {
    max-width: 650px;
    margin: 40px auto;
    padding: 0 10px;
    font: 18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #444;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='50' height='60' viewport='0 0 100 100' style='fill:black;font-size:30px;'><text y='50%'>🐢</text></svg>") 16 0, auto;
    /*!emojicursor.app*/
}

a:link {
    color: #0000EE
}

a:visited {
    color: #0000EE
}

h1,
h2,
h3 {
    line-height: 1.2
}

@media (prefers-color-scheme: dark) {
    body {
        color: #c9d1d9;
        background: #0d1117
    }

    a:link {
        color: #58a6ff
    }

    a:visited {
        color: #58a6ff
    }
}

.main-nav {
    display: flex;
    /* Display list items horizontally */
    justify-content: center;
    /* Center items horizontally */
    padding: 10px 0;
    cursor: default;
}

/* Media query for responsive design */
@media screen and (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        /* Change to vertical layout on smaller screens */
        text-align: center;
        /* Center items vertically */
    }

    .main-nav li {
        margin: 10px 0;
        /* Add spacing between vertical items */
    }
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.emoji-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: calc(33.33% - 20px);
    /* Distribute items evenly with some spacing */
    max-width: 250px;
    /* Set a maximum width for each item */
}

.emoji-item img {
    width: 100%;
    max-height: 150px;
}

.text {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.haiku {
    text-align: left;
}

.cc-license {
    text-align: right;
}