/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
}

header {
    text-align: center;
    margin-top: 20px;
}

nav {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #007bff;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

.all-images-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: #f0f0f0;
}

.all-images-grid p {
    font-size: 24px;
    color: #555;
}

.color-theory-section {
    margin-top: 20px;
}

.color-theory-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.color-theory-section p {
    font-size: 16px;
    line-height: 1.5;
}

.recommended-products {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.product {
    width: 22%;
    text-align: center;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product img {
    width: 100%;
    height: auto;
}

.product h3 {
    margin: 10px 0;
    font-size: 20px;
}

.product p {
    font-size: 16px;
    color: #666;
}

.product button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.product button:hover {
    background-color: #0056b3;
}

.all-images-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    gap: 20px;
}

.coloring-page {
    width: 200px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    background-color: white;
}

.coloring-page img {
    width: 100%;
    height: auto;
}

.coloring-page h3 {
    margin: 10px 0;
    font-size: 18px;
}

.coloring-page p {
    font-size: 14px;
    color: #666;
}

.coloring-page a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
}

.coloring-page a:hover {
    background-color: #0056b3;
}
