

html,
body {
  width: 100%;
  height: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

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

/* ==================================================
   Color System
   ================================================== */

:root {
  /* Layout */
  --max-width: 1400px;

  /* Brand colors */
  --color-primary: #0d69b4;
  --color-secondary: #1a8fce;

  /* Neutral colors */
  --color-black: #000000;
  --color-gray-dark: #333333;
  --color-gray: #666666;
  --color-gray-light: #cccccc;
  --color-white: #ffffff;

  /* Backgrounds */
  --color-background: #ffffff;

  /* Text */
  --color-text: #161616;

  /* Shadow */
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ==================================================
   Typography
   ================================================== */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings (unstyled by default) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  line-height: 1.2;
}

/* Paragraph */
p {
  color: var(--color-text-secondary);
}

/* ==================================================
   Links
   ================================================== */

a {
  color: inherit;
  text-decoration: none;
}



/* ==================================================
   Media
   ================================================== */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}


