/* Import component styles */
@import url('./nav.css');
@import url('./buttons.css');
@import url('./main.css');
@import url(./header.css);
@import url(./footer.css);
@import url(./dropdown.css);
@import url(./cards.css);
@import url(./images.css);
@import url(./messageboard.css);
@import url(./progress_bar.css);
@import url(./form.css);
@import url(./checkbox.css);


/*
For a Maneki cat-themed aesthetic, you might want to use colors that reflect elements 
commonly associated with Japanese culture, luck, and the traditional colors of the Maneki Neko (Beckoning Cat). 
Here's a suggested color palette:

Lucky Gold: #FFD700      -> COMPLENTARY COLOR: #0028FF
Represents wealth, prosperity, and the gold color often seen in Maneki Neko statues.

Calming White: #FFFFFF     -> COMPLENTARY COLOR: NONE
Symbolizes purity, cleanliness, and tranquility. White is often used as a background or accent color.

Playful Red: #FF0000      -> COMPLENTARY COLOR: #00FFFF
Represents energy, passion, and good fortune. Red is commonly found in Maneki Neko's bib or collar.

Harmonious Pink: #FFC0CB    -> COMPLENTARY COLOR: #C0FFF4
Evokes feelings of love, harmony, and happiness. Pink can add a softer touch to the palette.

Mystical Black: #000000     -> COMPLENTARY COLOR: NONE
Signifies mystery, protection, and elegance. Black is often used for detailing or as a background color.

Earthy Brown: #8B4513           -> COMPLENTARY COLOR: #13598B
Reflects stability, warmth, and a connection to nature. Brown can add depth and balance to the palette.
*/


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-size: 11px;
    background-color: #F7CAC9;
}



main {
    flex: 1;
    padding-bottom: 10%;
    max-height: 100%
}
