body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.navbar img {
    max-width: 100px;
}

.navbar h2 {
    margin: 0;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.cat {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    border: 2px solid black;
    max-width: 300px; /* Set your desired maximum width */
}

.cat-image-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cat img {
    max-width: 100%;
}
