@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&family=Open+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: var(--font-size-2xl); }
h2 { font-size: var(--font-size-xl); }
h3 { font-size: var(--font-size-lg); }

a {
  color: var(--color-magenta);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-magenta-hover);
}

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

input, select, textarea, button {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
}

::selection {
  background-color: var(--color-magenta);
  color: var(--color-white);
}
