/**
 * Theme Name: Starter Theme
 * Description: Reusable Timber v2 starter theme.
 * Author: Theme Team
 * Author URI: https://example.com
 * Version: 1.0.0
 * Text Domain: theme
 */

:root {
  --container-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #111;
}

.container {
  width: min(100% - 2rem, var(--container-width));
  margin-inline: auto;
}