@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sarpanch:wght@900&display=swap");
@font-face {
  font-family: 'CyGrotesk';
  src: url("/font/CyGrotesk-WideDark.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CyGrotesk Heavy';
  src: url("/font/CyGrotesk-WideHeavy.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

h1 {
  font-family: 'CyGrotesk', sans-serif;
  font-size: 3.5vh;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 5vh;
  color: var(--secondary-color);
}

h3 {
  font-family: "Cy Grotesk", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 3vh;
  color: var(--primary-color);
  margin-top: 10px;
}

a {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  color: var(--primary-color);
  font-size: 15px;
}

.link-in-text {
  color: var(--primary-color);
  text-decoration: underline;
}

.link-in-text:hover {
  background-color: var(--light-color);
}

p {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--primary-color);
  line-height: 23px;
  margin-bottom: 1rem;
}

.nicer-text {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--primary-color);
  line-height: 23px;
  margin-bottom: 0.5rem;
}

.project-window-title {
  font-family: "Nunito";
  font-weight: 550;
  color: var(--primary-color);
  text-decoration: none;
  align-self: center;
  text-transform: uppercase;
  margin-bottom: 0;
}

b {
  width: fit-content;
  position: relative;
  z-index: 3;
  font-weight: 700;
  margin-right: 23px;
  font-family: "Nunito", sans-serif;
  font-size: 10px;
  color: var(--primary-color);
  text-transform: uppercase;
}

b::after {
  display: block;
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: -4px;
  bottom: -4px;
  background-color: var(--light-color);
  border: solid 1.5px var(--dark-color);
  z-index: -1;
  border-radius: 7px;
  box-shadow: 0 3px var(--dark-color);
}

.text-highlight {
  font-weight: bold;
  color: var(--highlight-color);
}
