/*
Theme Name: makotoyoshii
Theme URI: https://example.com/themes/makotoyoshii
Author: Your Name
Author URI: https://example.com
Description: Minimal starter theme for makotoyoshii portfolio/blog.
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: makotoyoshii
Tags: blog, portfolio, responsive-layout
*/

:root {
  --color-bg: #f6f6f4;
  --color-fg: #111;
  --color-accent: #ce5b27;
  --color-muted: #666;
  --font-base: 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-fg);
  background: var(--color-bg);
  line-height: 1.6;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  margin: -1px;
  height: 1px;
  width: 1px;
  overflow: hidden;
  border: 0;
}

.screen-reader-text:focus {
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  padding: 1rem;
  background: #fff;
  z-index: 100000;
}

