﻿/* css/reset.css — zaldor Base Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--color-text-dark); background: var(--color-white); line-height: 1.7; -webkit-font-smoothing: antialiased; opacity: 0; animation: bodyFadeIn 0.3s ease-out 0.1s forwards; }
@keyframes bodyFadeIn { to { opacity: 1; } }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
