* {
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: tan;
    padding: 20px; /* Adjust padding for smaller screens */
    margin: 0;
    height: 100vh;
}

img {
    width: 100%; /* Make images responsive */
    max-width: 300px; /* Limit maximum width */
    height: auto; /* Maintain aspect ratio */
}

#catImages {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    margin: 10px;
    padding: 10px;
    border: 2px solid #f9c4d2;
}

.label {
    margin-top: 20px;
    font-family: 'Bungee', sans-serif;
}

.title {
    font-family: 'Bungee', sans-serif;
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Architects Daughter', cursive;
    font-family: 'Mansalva', sans-serif;
}

button#learn-more {
    font-weight: 600;
    color: #382b22;
    text-transform: uppercase;
    padding: 1em 2em; /* Adjust padding for smaller screens */
    background: #fff0f0;
    border: 2px solid #b18597;
    border-radius: 0.75em;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: background 150ms cubic-bezier(0, 0, 0.58, 1), transform 150ms cubic-bezier(0, 0, 0.58, 1);
}

button#learn-more::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f9c4d2;
    border-radius: inherit;
    box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #ffe3e2;
    transform: translate3d(0, 0.75em, -1em);
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}

button#learn-more:hover {
    background: #ffe9e9;
    transform: translate(0, 0.25em);
}

button#learn-more:hover::before {
    box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
    transform: translate3d(0, 0.5em, -1em);
}

button#learn-more:active {
    background: #ffe9e9;
    transform: translate(0em, 0.75em);
}

button#learn-more:active::before {
    box-shadow: 0 0 0 2px #b18597, 0 0 #ffe3e2;
    transform: translate3d(0, 0, -1em);
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
    body {
        padding: 10px; /* Adjust padding for smaller screens */
    }

    #catImages {
        margin: 5px;
        padding: 5px;
    }
}
