:root {
  --body-background: #f3fcf0;
  --text-color: #1b10ff;
  --white: white;
  --platform-username-color: #3f3f3f;
  --link-hover-color: #ffd23f;
  --highlight-color: #91f1b6;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--body-background);
  color: var(--text-color);
  border: 1px #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5rem;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5em;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5em;
}

.button-icon {
  width: 2rem;
  font-weight: 300;
}

.content-wrapper-grid {
  grid-column-gap: 60px;
  background-color: var(--white);
  border-radius: 1.5rem;
  grid-template-rows: auto;
  width: 100%;
  max-width: 1150px;
  padding: 3rem;
  box-shadow: 0 0 15px 2px #8d8d8d42;
}

.platform-label {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.platform-button {
  color: var(--text-color);
  background-color: #fff;
  border: 5px solid #fff;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-height: 75px;
  margin-top: 20px;
  margin-left: 0;
  padding: 1rem 1.5rem;
  text-decoration: none;
  transition: margin-left .4s, background-color .4s;
  display: flex;
  position: relative;
  box-shadow: 0 0 10px #81818152;
}

.platform-button:hover {
  background-color: #00000070;
  margin-left: 1rem;
}

.platform-button.featured {
  background-color: var(--white);
}

.platform-button.featured:hover {
  background-color: #00000070;
}

.platform-button.hide {
  display: none;
}

.text-container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1300px;
  min-height: 50px;
  display: flex;
  position: relative;
  top: -90px;
}

.small-image {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 300px;
  position: relative;
  box-shadow: 8px 8px 18px -1px #c6c6c6;
}

.section {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  padding: 65px 35px;
  font-size: 1rem;
  display: flex;
  position: relative;
}

.vertical-container {
  text-align: left;
}

.vertical-container.text-right {
  text-align: right;
}

.platform-username {
  color: var(--platform-username-color);
  margin-top: 5px;
  font-family: Gochi Hand, sans-serif;
  font-size: .8rem;
}

.secondary-links-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-list-wrapper {
  width: 100%;
  max-width: 1150px;
  display: none;
}

.collection-list-wrapper.top-margin-15 {
  margin-top: 15px;
}

.collection-list-wrapper.top-margin-15.nodie {
  display: flex;
}

.card-image {
  object-fit: cover;
  border-radius: 1rem;
  width: 100%;
  max-height: 150px;
}

.card {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--white);
  color: var(--text-color);
  border-radius: 1rem;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
  padding: 1rem;
  text-decoration: none;
  transition: box-shadow .4s;
  display: flex;
  box-shadow: 0 0 10px #7a7a7a6b;
}

.card:hover {
  outline-color: var(--platform-username-color);
  outline-offset: 0px;
  outline-width: .5px;
  outline-style: solid;
  box-shadow: 0 0 10px #7a7a7a;
}

.text-left {
  text-align: right;
}

.text-left.bold {
  font-family: Oooh Baby, sans-serif;
  font-weight: 700;
}

.back-to-top-button {
  width: 3rem;
  display: none;
  position: absolute;
  inset: auto 0% 0% auto;
}

.empty-state-wrapper {
  text-align: center;
  background-color: #0000;
  width: auto;
  position: absolute;
}

.empty-state-wrapper.not-absolute {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  display: flex;
  position: static;
}

.collection-link-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  display: flex;
}

.text-link {
  color: var(--text-color);
  text-decoration: underline;
  transition: color .4s;
}

.text-link:hover {
  color: var(--platform-username-color);
}

.primary-button {
  background-color: var(--platform-username-color);
  border-radius: .8rem;
  padding: .7rem 2rem;
}

.text-centered {
  text-align: center;
}

.standard-icon {
  width: 65px;
}

.body {
  background-image: url('../images/zachyj-background-paper.jpg');
  background-position: 0 0;
  background-size: cover;
}

.heading {
  font-family: Montserrat, sans-serif;
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  transform: scale(.9);
}

.heading-2 {
  font-family: Montserrat, sans-serif;
}

.paragraph, .paragraph-2 {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.text-span {
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: .8rem;
}

.bold-text {
  font-size: .6rem;
}

.paragraph-3 {
  font-family: Montserrat, sans-serif;
}

.div-block {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.heading-3 {
  font-family: Montserrat, sans-serif;
  font-size: 1.8rem;
}

.heading-3.smaller {
  font-size: 1.6rem;
}

.heading-3.smaller.even-smaller {
  text-align: right;
  font-size: 1.1rem;
}

.text-block {
  font-family: Montserrat, sans-serif;
  font-size: .8rem;
  position: absolute;
  inset: auto 10% 0% auto;
}

.image-move-left {
  position: relative;
  left: -40px;
}

.text-span-2 {
  font-style: italic;
  font-weight: 800;
}

.image-4 {
  -webkit-text-stroke-color: var(--text-color);
}

@media screen and (max-width: 991px) {
  h2 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .content-wrapper-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-top: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .small-image {
    box-shadow: none;
    border-radius: 1.5rem;
    width: 30%;
    max-width: none;
    max-height: none;
  }

  .section {
    padding-top: 0;
    padding-bottom: 50px;
  }

  .secondary-links-list {
    grid-template-columns: 1fr 1fr;
  }

  .collection-list-wrapper {
    max-width: 700px;
  }

  .back-to-top-button {
    display: block;
    position: fixed;
    inset: auto 1rem 1rem auto;
  }

  .empty-state-wrapper.not-absolute {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .standard-icon {
    width: 45px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .platform-label {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }

  .section {
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .secondary-links-list {
    grid-template-columns: 1fr;
  }

  .back-to-top-button {
    width: 2.5rem;
  }

  .empty-state-wrapper.not-absolute {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .heading-3, .heading-3.smaller {
    font-size: 1.5rem;
  }

  .heading-3.smaller.even-smaller {
    font-size: 1rem;
  }

  .div-block-2 {
    margin-left: -25px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 1.8rem;
    line-height: 1.3em;
  }

  h2 {
    font-size: 1.4rem;
  }

  .button-icon {
    width: 1.5rem;
    margin-right: 10px;
  }

  .content-wrapper-grid {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .platform-label {
    font-size: 1.3em;
    line-height: 1.3rem;
  }

  .platform-button {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .platform-button:hover {
    margin-left: .5rem;
  }

  .text-container {
    top: -50px;
  }

  .small-image {
    max-height: 250px;
  }

  .section {
    padding-bottom: 25px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .back-to-top-button {
    border: 2px solid var(--white);
    background-color: var(--white);
    border-radius: 50%;
    width: 2rem;
  }

  .empty-state-wrapper.not-absolute {
    text-align: right;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .standard-icon {
    width: 35px;
  }

  .heading-3, .heading-3.smaller {
    text-align: right;
    font-size: 1rem;
  }

  .text-block {
    font-size: .5rem;
    right: 10%;
  }

  .image-move-left {
    width: 30px;
  }

  .text-span-2.hide {
    display: none;
  }

  .image, .image-2, .image-3 {
    width: 30px;
  }
}

#w-node-b4668a93-de7b-27ff-f10d-789ea686936e-25d6c2b4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_65bb75d4-8192-0965-5c73-e8249c8073ac-25d6c2b4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}


