:root {
  /* Do not set a font-size on a :root, body nor html level */
  /* Let your main text size be decided by the browser or the user settings */
  color-scheme: light dark; /* both supported */
  --clr-primary-400: 263 55% 52%;
  --clr-secondary-400: 217 19% 35%;
  --clr-secondary-500: 219 29% 14%;
  --clr-neutral-100: 0 0% 100%;
  --clr-neutral-200: 210 46% 95%;
  --clr-neutral-300: 0 0% 81%;

  --font-size--small: calc((14 / 16) * 1rem); /* 14px */
  --font-size--default: calc((16 / 16) * 1rem); /* 16px */
  --font-size--large: calc((24 / 16) * 1rem); /* 24px */

  --fw-100: 200;
  --fw-200: 300;
  --fw-400: 500;
  --fw-700: 600;

  --fs-300: 0.6875rem;
  --fs-400: 0.8125rem;
  --fs-500: 1.25rem;

  --ff-primary: "Atkinson-Hyperlegible-Regular-102a", Verdana, Tahoma, Arial,
    Geneva, sans-serif;

  color: hsl(0, 0%, 18%);
  font-family: var(--ff-primary);
  font-weight: var(--fw-200);
}

body {
  background: url("images/assets/bg.png");
}

img {
  width: 100%;
  filter: brightness(0.9) contrast(1.05);
}

body.darkmode img {
  filter: brightness(0.8) contrast(1.08);
}

.font-size--small {
  font-size: var(--font-size--small);
}

.font-size--default {
  font-size: var(--font-size--default);
}

.font-size--large {
  font-size: var(--font-size--large);
}

h1 {
  font-size: 2rem;
  font-weight: lighter;
  /* font-weight: var(--fw-100); */
}
h2 {
  font-size: 1rem;
  font-weight: lighter;
}
h3 {
  font-size: 1.2rem;
  font-weight: lighter;
  /* font-weight: var(--fw-100); */
}

p {
  font-size: 1.05rem;
  /* font-weight: var(--fw-100); */
}

a {
  color: hsl(0, 0%, 18%);
  text-decoration: none;
  font-size: 1rem;
}

a:hover {
  color: #4d4d4d;
  text-decoration: none;
  font-size: 1.05rem;
}

footer a {
  color: hsl(48, 3%, 70%);
}

a:hover {
  color: hsl(45, 5%, 85%);
}

footer h3 {
  color: hsl(48, 3%, 70%);
}

.footer-social p {
  color: hsl(48, 3%, 70%);
}

.footer-social h3 {
  color: hsl(48, 3%, 70%);
}

.footer-uk p {
  color: hsl(48, 3%, 70%);
}

.footer-thailand p {
  color: hsl(48, 3%, 70%);
}

.footer-notracking p {
  color: hsl(48, 3%, 70%);
}

.footer-notracking a {
  color: hsl(48, 3%, 70%);
}

.footer-notracking a:hover {
  color: hsl(45, 5%, 85%);
}

.footer-copyright p {
  color: hsl(48, 3%, 70%);
}

.footer-backtotop p {
  color: hsl(48, 3%, 70%);
}

footer p {
  color: hsl(48, 3%, 70%);
}

.darkmode a {
  color: hsl(48, 3%, 70%);
}

.darkmode a:hover {
  color: hsl(45, 5%, 85%);
}

summary:hover {
  color: #4d4d4d;
  /* font-size: 1.05rem; */
}

.darkmode summary {
  color: hsl(48, 3%, 70%);
}

.darkmode summary:hover {
  color: hsl(45, 5%, 85%);
}

/* h1::first-letter {
    font-size: 1.8rem;
    font-weight: lighter;
    color: brown; 
  }
  */

/* p::first-letter {
  font-size: 5rem;
  font-weight: bold;
  color: brown;
} */

/* .wrapperlinks {
  cursor: pointer;
  width: fit-content;
} */

.linkwrapper {
  /* background-color: rgb(38, 60, 38); */
  cursor: pointer;
  width: fit-content;
  display: grid;
  grid-template-columns: (1rem 1fr);
  justify-self: end;
  gap: 0.5rem;
  height: 2rem;
  align-items: flex-end;
}

.linkwrapper img {
  /* background-color: rgb(92, 107, 92); */
  grid-column: 1/2;
  height: 1.3rem;
  filter: invert(14%) sepia(11%) saturate(15%) hue-rotate(12deg) brightness(92%)
    contrast(86%);
}

.linkwrapper:hover img {
  filter: invert(27%) sepia(47%) saturate(11%) hue-rotate(341deg)
    brightness(121%) contrast(101%);
  height: 1.4rem;
}

.darkmode .linkwrapper img {
  filter: invert(78%) sepia(0%) saturate(2132%) hue-rotate(349deg)
    brightness(80%) contrast(78%);
}

.darkmode .linkwrapper:hover img {
  filter: invert(78%) sepia(0%) saturate(2132%) hue-rotate(349deg)
    brightness(97%) contrast(78%);
}

.linkicon {
  /* background-color: rgb(92, 107, 92); */
  grid-column: 1/2;
}

.linktext {
  grid-column: 2/3;
}

.linkwrapper:hover .linkwrapper {
  height: 1.7rem;
}

.wrapper-sharelinks {
  cursor: pointer;
  width: fit-content;
  grid-column: 2/3;
  justify-self: end;
}

.flex-textimagelink {
  background-color: rgb(88, 114, 114);
  display: flex;
  flex-direction: row;
  gap: 0rem;
  padding: 0.8rem;
  height: 3rem;
  width: auto;
}

.flex-textimagelink p {
  background-color: rgb(17, 48, 48);
  display: inline-block;
  width: 100%;
}

.flex-textimagelink:hover {
  /* background-color: rgb(86, 144, 144); */
  font-size: 1.05rem;
  padding: 0.5rem;
  height: 3rem;
}

.shareicon-holder {
  background-color: rgb(15, 54, 54);
  height: 1.6rem;
  width: 1.6rem;
  margin-top: 0.2rem;
  display: inline-block;
  filter: opacity(80%);
  -webkit-filter: opacity(80%);
  -moz-filter: opacity(80%);
}

.icon-holder {
  /* background-color: rgb(15, 54, 54); */
  height: 1.6rem;
  width: 1.6rem;
  margin-top: 0.2rem;
  display: inline-block;
  filter: opacity(80%);
  -webkit-filter: opacity(80%);
  -moz-filter: opacity(80%);
}

.icon-holder img {
  height: 1.4rem;
  width: 1.4rem;
}

.icon-holder:hover img {
  height: 1.6rem;
  width: 1.6rem;
}

.icon-holder:hover img {
  height: 1.6rem;
  width: 1.6rem;
}

button:hover .icon-holder {
  filter: opacity(60%);
  -webkit-filter: opacity(60%);
  -moz-filter: opacity(60%);
}

.darkmode .icon-holder {
  filter: opacity(39%) invert(83%);
  -webkit-filter: opacity(39%) invert(83%);
  -moz-filter: opacity(39%) invert(83%);
}

.darkmode button:hover .icon-holder {
  filter: opacity(60%) invert(83%);
  -webkit-filter: opacity(60%) invert(83%);
  -moz-filter: opacity(60%) invert(83%);
}

details > summary {
  padding: 4px;
  width: fit-content;
  height: 2rem;
  /* background-color: #eeeeee; */
  border: none;
  /* box-shadow: 1px 1px 2px #bbbbbb; */
  cursor: pointer;
}

details > summary:hover {
  padding: 4px;
  width: fit-content;
  height: 2rem;
  font-size: 1.05rem;
  /* background-color: #eeeeee; */
  border: none;
  /* box-shadow: 1px 1px 2px #bbbbbb; */
  cursor: pointer;
}

details > p {
  /* background-color: #eeeeee; */
  border: none;
  padding: 4px;
  margin: 0;
  /* box-shadow: 1px 1px 2px #bbbbbb; */
}

.blog-link-section a {
  color: hsl(0, 0%, 28%);
  text-decoration: none;
  letter-spacing: 0.2rem;
  font-weight: 400;
  cursor: pointer;
}

address {
  display: block;
  font-style: italic;
}

/* ======= DARK MODE ======= ======= DARK MODE ======= */
/* ======= DARK MODE ======= ======= DARK MODE ======= */
.darkmode {
  background: url("images/assets/bgdark.png");
  color: hsl(45, 3%, 70%);
}

.darkmode .dark-mode-toggle {
  color: hsl(45, 3%, 70%);
}

.darkmode .buttonzoomimage img {
  filter: drop-shadow(0.4em 0.4em 0.2em hsl(0 0% 0% /100%));
  -webkit-filter: drop-shadow(0.4em 0.4em 0.2em hsl(0 0% 0% /100%));
  -moz-filter: drop-shadow(0.4em 0.4em 0.2em hsl(0 0% 0% /100%));
}

.buttonzoomimage img {
  filter: drop-shadow(0.4em 0.4em 0.2em hsl(0 0% 0% /90%));
  -webkit-filter: drop-shadow(0.4em 0.4em 0.2em hsl(0 0% 0% /90%));
  -moz-filter: drop-shadow(0.4em 0.4em 0.2em hsl(0 0% 0% /90%));
}

.dark-mode-toggle {
  z-index: 100;
  border: 2px solid currentColor;
  padding: 4px;
  color: hsl(0, 0%, 24%);
  background: transparent;
  cursor: pointer;
  border-radius: 5px;
  width: 30px;
  height: 30px;
}

.darkmode .burger div {
  background-color: hsl(45, 3%, 70%);
}

.darkmode .nav-links a {
  color: hsl(45, 3%, 70%);
  text-decoration: none;
  letter-spacing: 0.2rem;
  font-weight: 400;
  cursor: pointer;
}

.darkmode .blog-link-section a {
  color: hsl(45, 3%, 70%);
  text-decoration: none;
  letter-spacing: 0.2rem;
  font-weight: 400;
  cursor: pointer;
}
/* ======= DARK MODE ======= ======= DARK MODE ======= */
/* ======= DARK MODE ======= ======= DARK MODE ======= */
