body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    padding: 20px;
}
#cat-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
}
.cat-pic {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 2px solid #d49c00;
    border-radius: 10px;
}
button{
    position: center;
    padding: 10px;
    background-color: #f3d77a ;
    border-radius: 10px;
    border-style: hidden;
    color: #914600;
    font-size: large;
}
button:hover {
    background-color: #f3a67a;
    color: #795c00;
    cursor:pointer;
}
body{
    background-image: url(yellow.jpg);
}
h1 {
    color:#914600;
}