/*
Theme Name: Network With Artur
Theme URI: https://networkwithartur.com
Author: Artur
Author URI: https://networkwithartur.com
Description: Tech Brutalism meets Dark Minimalism. An open laboratory for a Computer Networks student building in public.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: networkwithartur
Tags: dark, brutalism, portfolio, technical, custom
*/

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-root);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  opacity: 0.8;
}

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

::selection {
  background: var(--accent);
  color: var(--bg-root);
}
