
.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;
}

/* Reset some default styles */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Arial', sans-serif;
    background-color: #f2f2f2;
}

.cat {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    border: 5px solid #333;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    max-width: 500px; /* Adjust as needed */
}

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

.cat img {
    max-width: 100%;
    border-radius: 10px;
}

hr {
    width: 80%;
    margin: 20px 0;
    border: none;
    border-top: 2px solid #ddd;
}

button {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    padding: 10px 20px;
    margin: 5px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #555;
    transform: scale(1.05);
}

#mute-button {
    font-size: 16px;
    padding: 8px 15px;
    background-color: #444;
}

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


.button-container .cat-action-button {
    margin: 5px;
    width: 150px; /* Adjust button width as needed */
}


@media only screen and (max-width:900px)
{
    .action {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap; /* Allow wrapping to multiple lines */
    }  
    
    .cat
    {
        max-width: 80%;
    }
}