/*
Theme Name: Character Counter
Theme URI: 
Author: 
Author URI: 
Description: Simple blue and white gradient theme with footer menu
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: character-counter
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #4a90c2 100%);
    background-attachment: fixed;
}

main {
    flex: 1;
    padding: 2rem;
}

footer {
    background: #1a3a52;
    padding: 1rem;
    margin-top: auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.footer-nav li {
    list-style: none;
}

.footer-nav a {
    color: white;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}
