/* noto-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v34-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* noto-sans-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v34-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }


*,
*::before,
::after {
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-size: 2.5rem;
  font-family: Poppins, Noto Sans, sans-serif;
  text-align: center;
  line-height: 1.5;
  background: #f8f8f8;
}

.legaltxt {
    padding: 3rem 5%;
    text-align: start;
}

.legaltxt li{
    margin-left: 2rem;
}

.legaltxt h1,.legaltxt hr {
    margin: 2rem 0rem;
}

.legaltxt h2 {
    margin: 1rem 0rem;
}

.legaltxt h3 {
    margin: 1.25rem 0rem;
}

.legaltxt h4, .legaltxt ul {
    margin: 0.5rem 0rem;
}

main {
  padding: 12vh 0;
}

img[alt="book_of_l photo"] {
  --scale: 250px;
  width: var(--scale);
  height: var(--scale);
  border-radius: 24px;
}

img[alt="book_of_l photo"] + h3 {
  margin: 16px 0 0px;
}

.linktree-nav {
  margin: 40px auto 0;
  width: 95%;
  max-width: 900px;
}

.linktree-nav ul {
  display: grid;
  gap: 2rem;
  list-style: none;
}

.linktree-nav a {
  text-decoration: none;
  color: inherit;
}

.linktree-box, .float {
  display: flex;
  align-items: center;
  text-align: start;
  padding: 12px 12px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  background: #fff;
}


.linktree-box .icon-box {
  --scale: 100px;
  width: var(--scale);
  height: var(--scale);
  font-size: 3.25rem;
  background: hsl(var(--color), 30%);
  color: hsl(var(--color));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 2.25rem;
}

.float {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 3rem;
  right: 3rem;
  border-radius: 100%;
  width: 9rem;
  height: 9rem;
  background-color: #fff;
  border: 1px solid #ebebeb;
  font-size: 3rem;
}

@media (min-width: 1200px) {
  body {
    font-size: 0.94rem;
  }

  img[alt="book_of_l photo"] {
    --scale: 164px;
    width: var(--scale);
    height: var(--scale);
    border-radius: 24px;
  }

  .linktree-nav ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .linktree-nav ul {
    display: grid;
    gap: 1rem;
    list-style: none;
  }

  .linktree-box .icon-box {
    --scale: 65px;
    font-size: 1.25rem;
    margin-right: 1rem;
  }

  .float {
    top: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .legaltxt {
    padding: 3rem 10%;
  }

}