/*
Theme Name: Box & Beanstalk
Description: A minimalist WordPress theme
Version: 1.0
Author: Nate Allison
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
}

/* Main layout */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.site-title {
    font-size: 2rem;
    font-weight: normal;
    text-align: center;
}