/*
Theme Name: Pettet Industries
Theme URI: https://www.linkedin.com/in/garrypettet/
Author: Garry Pettet
Author URI: https://www.linkedin.com/in/garrypettet/
Description: A simple placeholder theme for Pettet Industries featuring a centered company name and fixed footer.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pettet-industries
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    letter-spacing: 0.1em;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #333;
    color: #fff;
    font-size: 0.875rem;
}

footer a {
    color: #fff;
    text-decoration: none;
}

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