/* Reset some default browser styling */

:root {
    --primary-color: #FFB6C1; /* Light Pink */
    --secondary-color: #6A5ACD; /* Slate Blue */
    --background-color: #FFF8F0; /* Floral White */
    --text-color: #333333; /* Dark Gray */
    --accent-color: #FFD700; /* Gold */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0 20px;
    line-height: 1.6;
}

#main-container {
    background-color: #ffffff;
    padding: 40px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    margin: auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

#cat-container {
    margin: 20px 0;
    display: flex;
    flex-direction: column; /* Arrange elements vertically */
    justify-content: center;
    align-items: center; /* Center the items horizontally */
}

#cat-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cat-phrase {
    font-family: 'Indie Flower', cursive;
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-top: 15px;
    text-align: center;
}

#new-cat-button {
    padding: 12px 24px;
    font-size: 1.1rem;
    cursor: pointer;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 20px;
}

#new-cat-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

#courtesy-text {
    position: fixed;
    bottom: 10px;
    right: 10px; /* Change to left if you prefer */
    font-family: 'Indie Flower', cursive;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.8); /* Light background to make it visible */
    padding: 5px;
    border-radius: 5px;
}

