body {
    font-family: 'Roboto Mono', monospace;
    color: #333; /* Dark grey text */
    background-color: #f5f5f5; /* Off-white background */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px; /* Increased base font size */
}

header {
    text-align: center;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    padding: 0;
    font-size: 2em; /* Larger font for the header */
}

#hero {
    text-align: center;
    padding: 50px 0;
    font-size: 3em; /* Significantly larger font for the hero section */
}

main {
    margin: 0 auto; /* Center main content */
    max-width: 800px; /* Adjust this value for desired width */
    padding: 0 20px; /* Add some padding on the sides */
}

.project, #contact, footer {
    padding: 20px;
    margin: 20px;
    font-size: 1.2em; /* Slightly larger font for these sections */
}

/* Additional styles for our app */
.container-fluid {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn {
    font-family: 'Roboto Mono', monospace;
    margin-right: 8px;
}

h4 {
    margin-bottom: 15px;
    color: #444;
}

.editor-container {
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

/* Documentation styles */
.example-script {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.example-script pre {
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    overflow-x: auto;
}

.example-script code {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9em;
}

.example-script h5 {
    margin-bottom: 15px;
    color: #444;
}

ol li, ul li {
    margin-bottom: 8px;
}

code {
    background-color: #f1f1f1;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9em;
} 