/* site.css */

:root {
  --ink: #141414;
  --ink-soft: #2a2a2a;
  --text: #1f1f1f;
  --text-muted: #555;
  --paper: #f5f5f5;
  --card: #ffffff;
  --line: #d8d8d8;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 20px;
}

@font-face {
  font-family: "Lato";
  src: url("../Examples/Onsemble%20Website/fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Lato";
  src: url("../Examples/Onsemble%20Website/fonts/Lato/Lato-Light.ttf") format("truetype");
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: "Lato";
  src: url("../Examples/Onsemble%20Website/fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  background:
    radial-gradient(circle at top right, #ffffff 0%, #f8f8f8 25%, #ececec 100%);
  color: var(--text);
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}
