﻿@charset "UTF-8";

/* CSS Information
---------------------------------------------------------------
Site URL:https://
File name:reset.css
Summary:base styles
Created:2026-03-23
--------------------------------------------------------------- */

/* Box sizing */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default margin */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
figure,
blockquote {
	margin: 0;
}

/* Body base */
body {
	min-height: 100vh;
	line-height: 1;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	font-family: "Noto Sans", system-ui, -apple-system, sans-serif;
	color: #0F0F0F;
	background: #fff;
}

/* Lists */
ul,
ol {
	list-style: none;
	padding: 0;
}

/* Links */
a {
	text-decoration: none;
	color: inherit;
}

/* Images & media */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Form elements */
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

/* Button reset */
button {
	background: none;
	border: none;
	cursor: pointer;
}

/* Table */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Remove quote styles */
blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: "";
}

/* Accessibility: keep focus visible */
:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
}

/* Smooth scroll (optional) */
html:focus-within {
	scroll-behavior: smooth;
}