@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=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  color-scheme: dark;
  --bgPrimary: #212121;
}

html {
  display: flex;
  justify-content: center;
}

body {
  background: var(--bgPrimary);
  max-width: 700px;
  font-family: "Work Sans";
  color: #ababab;
  padding-inline: 15px;
  padding-bottom: 100px;
}
h1,
h2,
h3 {
  font-family: "Google Sans Code";
  color: #fff;
  margin-top: 50px;
}
p {
  font-weight: 400;
}

h1:first-child {
  margin-block: 100px 40px;
}

hr {
  margin-block: 40px;
}

.endHR {
  width: 100px;
  border: 2px solid #cdcdcd;
  border-radius: 5px;
  margin-top: 70px;
}

*::selection {
  color: #8d8d8d;
  background: #1c1c1c;
}

.imageArrayContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.imageArrayContainer > img {
  max-height: 600px;
  max-width: 80vw;
}

.githubRepoLink {
  background: #1a1a1a;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
  margin-block: 5px;
}
.githubRepoLink::before {
  background: url(/images/github.png);
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background-size: cover;
}

.noteContainer > a {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}
.noteContainer > p {
  margin-block: 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
