/**
 * Theme Name: SORA
 * Description: SORA theme.
 * Author: Lufy
 * Author URI: https://lufy.ai
 * Version: 1.0.0
 */

: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;
}