/* General styles */
body {
    font-family: Verdana, sans-serif;
    background-color: #808080;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Catalog container */
.catalog-container {
    background-color: #505050;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    text-align: left;
}

/* Headings */
.catalog-container h1 {
    font-family: 'Courier New', monospace;
    color: #ADD8E6;
    font-size: 2.5em;
}

/* Category descriptions */
.catalog-container .header p {
    font-size: 1.2em;
    margin: 10px 0;
    font-family: Georgia, serif;
    font-weight: bold;
}

/* Category colors */
.toys {
    color: gold;
    font-style: italic;
}

.food {
    color: red;
    font-weight: bold;
}

.others {
    color: white;
    font-weight: bold;
}

/* List styling */
.catalog-container ul {
    list-style-type: none;
    padding: 0;
}

/* Form styling */
form {
    text-align: center;
}

form input {
    margin: 10px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ADD8E6;
    border-radius: 4px;
    background-color: #505050;
    color: #ADD8E6;
}

form button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #707070;
    color: #ADD8E6;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #606060;
}
