:root {
  --font-main: "Roboto", system-ui, sans-serif;
  --background-nav: #0f172a;
  --light-text-color: #fff;
  --nav-link-text-color: #cbd5e1;
  --link-text-color: #8a2be2;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 0 16px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  padding: 12px;
  background-color: var(--background-nav);
  color: var(--light-text-color);
  z-index: 10;
}

.header__logo {
  font-size: 20px;
  font-weight: 700;
}

.header__nav {
  display: flex;
  gap: 24px;
}

.nav__link {
  text-decoration: none;
  color: var(--nav-link-text-color);
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--light-text-color);
}

.paragraph {
  width: 400px;
}

p {
  text-indent: 30px;
  font-size: 20px;
  font-weight: 400;
}

.link {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}
.link:hover {
  color: var(--link-text-color);
}

.image {
  position: relative;
}

.list {
  width: 300px;
  height: 120px;
  overflow: auto;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
