html {
  font-size: 2vw;
  scroll-behavior: smooth;
  height: 100%;
}
@media (min-width: 76.8rem) {
  html {
    font-size: 0.85vw;
  }
}
@media (min-width: 144rem) {
  html {
    font-size: 0.75vw;
  }
}

body {
  margin: 0;
  font-size: 1.6rem;
  color: #606060;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
}
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  font-family: "Funnel Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: -1.5px;
}
@media (min-width: 76.8rem) {
  * {
    letter-spacing: -2px;
  }
}

a {
  color: #ff00ff;
  font-family: "Funnel Sans";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  padding: 0 0.25rem;
  text-decoration-color: rgba(255, 0, 255, 0.5);
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
  text-underline-position: from-font;
}
a[href^="https://"] {
  position: relative;
}
a[href^="https://"]::before {
  content: url("../img/wave-bye.gif");
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(5px) scale(0.375);
  transform-origin: center bottom;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.25, 0.64, 1);
  pointer-events: none;
  margin-bottom: 0.25rem;
  image-rendering: pixelated;
}
a[href^="https://"]:after {
  content: url("../img/pink.svg");
  width: 1rem;
  height: fit-content;
  margin-left: 0.5rem;
  display: inline-block;
}
a[href^="https://"]:hover {
  background-color: #ff00ff;
  color: #fff;
}
a[href^="https://"]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(0.375);
}
a[href^="https://"]:hover:after {
  content: url("../img/white.svg");
}

.page-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}
@media (min-width: 76.8rem) {
  .page-layout {
    flex-direction: row;
    justify-content: space-between;
    padding: 4rem;
  }
}

@media (min-width: 76.8rem) {
  .nav + section,
  .nav + main {
    margin-left: 24rem;
  }
}

.left-content {
  max-width: 100%;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 1rem;
  z-index: 5;
  padding-top: 2rem;
}
.left-content .emoji-header {
  font-size: 4rem;
  font-weight: 800;
  font-family: monospace;
  position: relative;
  width: fit-content;
  animation: jump 3s ease-out infinite forwards;
}
@media (min-width: 76.8rem) {
  .left-content .emoji-header {
    font-size: 2.5rem;
  }
}
.left-content .emoji-header:before, .left-content .emoji-header:after {
  position: absolute;
  font-size: 2rem;
  opacity: 0;
  padding: 0.5rem;
  background-color: white;
  border: 1px solid black;
}
.left-content .emoji-header:before {
  content: "hi!";
  color: rgb(0, 0, 0);
  transform: rotate(-10deg);
  animation: barkL 3s ease-out infinite forwards;
  left: -0.5rem;
}
.left-content .emoji-header:after {
  content: "hello!";
  color: rgb(0, 0, 0);
  transform: rotate(10deg);
  animation: barkR 3s ease-out infinite forwards;
  right: -2rem;
}
.left-content p {
  font-size: 3.5rem;
  max-width: 50rem;
  margin: 0;
}
@media (min-width: 76.8rem) {
  .left-content p {
    font-size: 2.5rem;
  }
}
@media (min-width: 76.8rem) {
  .left-content p {
    font-size: 3.5rem;
  }
}
@media (min-width: 76.8rem) {
  .left-content {
    max-width: 70%;
    padding-top: 0;
  }
}

@keyframes barkL {
  0% {
    top: 0;
    opacity: 0;
  }
  1% {
    top: -0.5rem;
    opacity: 1;
  }
  3% {
    top: -1rem;
    opacity: 1;
  }
  8% {
    top: -1.25rem;
    opacity: 0;
  }
  9% {
    top: -1.25rem;
    opacity: 0;
  }
  11% {
    top: 0;
    opacity: 0;
  }
  12% {
    top: 0;
    opacity: 0;
  }
  15% {
    top: 0;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 0;
  }
}
@keyframes barkR {
  0% {
    top: 0;
    opacity: 0;
  }
  1% {
    top: 0;
    opacity: 0;
  }
  3% {
    top: 0;
    opacity: 0;
  }
  11% {
    top: 0;
    opacity: 0;
  }
  12% {
    top: -0.5rem;
    opacity: 1;
  }
  14% {
    top: -1rem;
    opacity: 1;
  }
  19% {
    top: -1.25rem;
    opacity: 0;
  }
  20% {
    top: -1.25rem;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 0;
  }
}
@keyframes jump {
  0% {
    transform: translateY(0px);
  }
  1% {
    transform: translateY(-5px);
  }
  3% {
    transform: translateY(0px);
  }
  11% {
    transform: translateY(0px);
  }
  12% {
    transform: translateY(-5px);
  }
  15% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes appearRight {
  from {
    left: -5px;
    opacity: 0.8;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
.right-decor {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  position: relative;
  width: 100%;
  left: -1rem;
}
@media (min-width: 76.8rem) {
  .right-decor {
    align-items: flex-end;
    padding-left: 8rem;
    max-width: 50%;
    height: 100%;
    left: unset;
  }
}

.arena-feed {
  position: relative;
  padding-bottom: 8rem;
}
@media (min-width: 76.8rem) {
  .arena-feed {
    padding-bottom: 10rem;
  }
}
.arena-feed + .right-decor {
  z-index: -1;
}

.social-links-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background-color: white;
  padding: 0.25rem 0.75rem;
  z-index: 2;
  position: relative;
}
.social-links-top a {
  font-size: 1.4rem;
  white-space: nowrap;
}
@media (min-width: 76.8rem) {
  .social-links-top a {
    font-size: 1.75rem;
  }
}
@media (min-width: 144rem) {
  .social-links-top a {
    font-size: 2rem;
  }
}
@media (min-width: 76.8rem) {
  .social-links-top {
    position: absolute;
    top: 0;
    right: 0;
    gap: 1.5rem;
  }
}

.cta-link {
  color: #ff00ff;
  font-weight: 800;
  font-size: 5rem;
  text-decoration-style: solid;
  text-decoration-color: #ff00ff;
  gap: 1rem;
  width: fit-content;
  line-height: 1.3;
  padding: 0 0.25rem 1rem 0.5rem;
  margin-left: -0.5rem;
  text-decoration-thickness: 6px;
}
@media (min-width: 76.8rem) {
  .cta-link {
    font-size: 3.5rem;
    text-decoration-thickness: 8px;
  }
}
.cta-link[href^="https://"]::after {
  width: 3rem;
  height: 3rem;
  top: 1rem;
  position: relative;
}
.cta-link:hover {
  background-color: #ff00ff;
  color: white;
  text-decoration-color: white;
}

.ascii-art-container {
  font-size: 1.5rem;
  line-height: 1;
  color: #a0a0a0;
  z-index: 0;
  position: fixed;
  bottom: 0;
  width: fit-content;
}
@media (min-width: 76.8rem) {
  .ascii-art-container {
    right: 0;
    top: 0;
    height: 100%;
    font-size: 1.5rem;
  }
}

.ascii-art {
  margin: 0;
  width: fit-content;
  white-space: pre;
}

.faded-image {
  position: fixed;
  width: 15rem;
  height: 15rem;
  background-size: cover;
  background-position: center;
  image-rendering: pixelated;
  opacity: 0.5;
  z-index: -1;
  right: 0;
  bottom: 25vh;
  left: 0;
}
@media (min-width: 76.8rem) {
  .faded-image {
    right: 6rem;
    bottom: 6rem;
    left: unset;
    width: 30rem;
    height: 30rem;
  }
}

.bio {
  background-color: white;
}

.last-updated {
  font-size: 2rem;
  letter-spacing: -1px;
  margin: 1rem -1rem -1rem -1rem;
  padding: 1rem;
  border-top: 1px solid black;
  width: calc(100% + 2rem);
}
@media (min-width: 76.8rem) {
  .last-updated {
    font-size: 1.5rem;
  }
}

.like-bubble {
  box-shadow: 0px 0px 0px 20px #fff;
  position: fixed;
  background-color: white;
  color: rgba(96, 96, 96, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.75);
  padding: 1rem;
  font-size: 2.5rem;
  z-index: 1000;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  left: 0.95rem;
  bottom: 1rem;
  transition: all 0.3s ease-in-out;
}
.like-bubble .get-another-link {
  line-height: 1;
  color: #ff00ff;
  font-size: 3rem;
}
@media (min-width: 76.8rem) {
  .like-bubble .get-another-link {
    font-size: 1.5rem;
  }
}
.like-bubble .get-another-link:hover {
  text-decoration: underline;
}
@media (min-width: 76.8rem) {
  .like-bubble {
    position: absolute;
    bottom: 2rem;
    left: 15rem;
    font-size: 2rem;
    transform: none;
  }
}
@media (min-width: 144rem) {
  .like-bubble {
    font-size: 2.5rem;
  }
}

.like-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}
@media (min-width: 76.8rem) {
  .like-container {
    flex-wrap: nowrap;
  }
}

#interest-display {
  font-weight: bold;
  color: #606060;
}
#interest-display a {
  line-height: 1;
}
#interest-display span {
  letter-spacing: -2px;
  font-size: 3rem;
}
@media (min-width: 76.8rem) {
  #interest-display span {
    font-size: 2rem;
  }
}

.interest-icon {
  height: 8rem;
  width: auto;
  vertical-align: middle;
  max-width: 200px;
  max-height: 150px;
  position: relative;
  left: -5px;
  opacity: 0.8;
  animation: appearRight 0.3s cubic-bezier(0.2, 0, 0.04, 1) forwards;
}
.interest-icon[src$=".gif"], .interest-icon[src$=".webp"] {
  height: 100%;
}

.paw-deco {
  position: relative;
  left: 5rem;
}

.star {
  position: absolute;
  bottom: 0;
  right: 0;
}

.ear {
  color: rgb(133, 81, 38);
}

.paw {
  color: #a17455;
}

.eye {
  color: black;
}

.nose {
  color: rgb(90, 90, 90);
}

.nav {
  border-right: 1px solid black;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  left: 0;
  height: 100%;
  width: fit-content;
  top: 0;
  z-index: 100;
  background-color: white;
}
@media (min-width: 76.8rem) {
  .nav {
    display: flex;
    width: 24rem;
  }
}
.nav ul, .nav li {
  margin: 0;
  padding: 0;
}
.nav a {
  font-size: 1.25rem;
  letter-spacing: 0;
  color: black;
  text-decoration: none;
  padding: 0.5rem 1rem;
  width: 100%;
  text-align: right;
}
.nav a.current {
  color: #ff00ff;
  text-decoration: underline;
}
.nav a:hover {
  text-decoration: underline;
  background-color: #fff;
  color: black;
}
.nav a:hover::after {
  content: url("../img/pink.svg");
}
.nav .top, .nav .bottom {
  display: flex;
  flex-direction: column;
}
.nav .top {
  display: flex;
  padding: 1rem;
}
.nav .top a {
  font-size: 3.25rem;
  text-align: center;
  border-radius: 1rem;
  margin: 1rem 0rem 0rem 0rem;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.05);
}
.nav .top a.current {
  background-color: rgba(255, 0, 255, 0.1);
}
.nav .top a:hover {
  background-color: rgba(255, 0, 255, 0.1);
  color: #ff00ff;
}
.nav .top a:hover::after {
  content: none;
}
.nav .bottom {
  margin-bottom: 2rem;
  align-items: flex-end;
}
.nav .bottom a {
  width: fit-content;
}

#animation-container {
  /* **Sets the frame display size (250px x 250px)** */
  width: 250px;
  height: 250px;
  /* Set the sprite sheet as the background image */
  background-image: url("/img/speen-sheet.png");
  background-repeat: no-repeat;
  /* Initially show the first frame (top-left corner) */
  background-position: 0 0;
  /* Styling for interaction */
  cursor: grab;
  user-select: none; /* Prevents text selection during drag */
  position: relative;
  /* --- CSS Animation for Floating --- */
  animation: floatAnimation 6s ease-in-out infinite;
}

.me {
  position: fixed;
  top: unset;
  bottom: -6vw;
  left: unset;
  right: -25vw;
  z-index: 100;
  scale: 0.75;
  transition: all 0.1s ease-in-out;
}
@media (min-width: 76.8rem) {
  .me {
    top: 2rem;
    right: 0;
    bottom: unset;
    left: unset;
    scale: 1;
  }
}
.me:active, .me:focus, .me:focus-visible {
  scale: 0.85;
}
@media (min-width: 76.8rem) {
  .me:active, .me:focus, .me:focus-visible {
    scale: 1.1;
  }
}
.me .shadow {
  width: 120px;
  height: 50px;
  background-color: rgba(133, 81, 38, 0.15);
  border-radius: 100%;
  position: absolute;
  bottom: 5%;
  z-index: -1;
  left: 30%;
}

@keyframes floatAnimation {
  /* **CHANGED: Start position is 15px down** */
  0% {
    transform: translateY(15px);
  }
  /* **CHANGED: Middle position is 15px up** */
  50% {
    transform: translateY(-15px);
  }
  /* **CHANGED: End position returns to 15px down** */
  100% {
    transform: translateY(15px);
  }
}
.inspiration-about {
  font-size: 2.5rem;
  letter-spacing: -1px;
  color: black;
  padding: 1rem;
}
@media (min-width: 76.8rem) {
  .inspiration-about {
    font-size: 2.5rem;
  }
}

.stats {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  font-weight: normal;
  align-items: flex-start;
}
.stats .label {
  color: rgba(0, 0, 0, 0.4);
}
.stats span {
  letter-spacing: 0px;
  font-size: 1.5rem;
}
.stats .source {
  margin-top: 1rem;
  padding-top: 0rem;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

@keyframes thumbnailFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.channel-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.channel-content .channel-block {
  width: calc((100% - 0.5rem) / 3);
  height: 19vh;
  overflow: hidden;
  opacity: 0;
  animation: thumbnailFadeIn 0.25s cubic-bezier(0.2, 0, 0.1, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.03s);
}
@media (min-width: 76.8rem) {
  .channel-content .channel-block {
    width: unset;
    height: unset;
    overflow: visible;
  }
}
.channel-content .channel-block a {
  padding: 0;
  line-height: 1;
  font-size: 1rem;
}
.channel-content .channel-block .image-link {
  transition: all 0.1s ease-in-out;
}
@media (min-width: 76.8rem) {
  .channel-content .channel-block .image-link {
    display: flex;
  }
}
.channel-content .channel-block .image-link:hover {
  scale: 1.05;
}
.channel-content .channel-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.1s ease-in-out;
}
@media (min-width: 76.8rem) {
  .channel-content .channel-block img {
    width: unset;
    height: 300px;
  }
}

@media (min-width: 76.8rem) {
  .arena-feed.thumbnails-small .channel-content .channel-block img {
    height: 150px;
  }
}

@media (min-width: 76.8rem) {
  .arena-feed.thumbnails-grid {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 76.8rem) {
  .arena-feed.thumbnails-grid .channel-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 76.8rem) {
  .arena-feed.thumbnails-grid .channel-content .channel-block {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
  }
  .arena-feed.thumbnails-grid .channel-content .channel-block .image-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .arena-feed.thumbnails-grid .channel-content .channel-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }
}
@media (min-width: 76.8rem) {
  .arena-feed.thumbnails-grid.thumbnails-small .channel-content {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.thumbnail-toggle-btn .option,
.thumbnail-grid-btn .option {
  letter-spacing: -1px;
}
.thumbnail-toggle-btn .option:hover,
.thumbnail-grid-btn .option:hover {
  text-decoration: underline;
}

.thumbnail-toggle-btn,
.thumbnail-grid-btn {
  display: none;
  position: fixed;
  bottom: 2rem;
  z-index: 1000;
  background-color: #ff00ff;
  color: white;
  padding: 0.75rem;
  border-radius: 3rem;
  font-size: 1.75rem;
  border: none;
  cursor: pointer;
  font-family: "Funnel Sans", sans-serif;
  width: 15rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
@media (min-width: 76.8rem) {
  .thumbnail-toggle-btn,
  .thumbnail-grid-btn {
    display: flex;
  }
}
.thumbnail-toggle-btn::before,
.thumbnail-grid-btn::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: calc(50% - 0.75rem);
  height: calc(100% - 1.5rem);
  background-color: white;
  border-radius: 3rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.25, 0.64, 1);
  z-index: 0;
}
.thumbnail-toggle-btn:hover::before,
.thumbnail-grid-btn:hover::before {
  transform: translateX(6px);
}
.thumbnail-toggle-btn.active-right::before,
.thumbnail-grid-btn.active-right::before {
  transform: translateX(100%);
}
.thumbnail-toggle-btn.active-right:hover::before,
.thumbnail-grid-btn.active-right:hover::before {
  transform: translateX(calc(100% - 6px));
}
.thumbnail-toggle-btn .option,
.thumbnail-grid-btn .option {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border-radius: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.thumbnail-toggle-btn .option.active,
.thumbnail-grid-btn .option.active {
  color: #ff00ff;
  font-weight: 500;
}
.thumbnail-toggle-btn .option.active:hover,
.thumbnail-grid-btn .option.active:hover {
  text-decoration: none !important;
}
.thumbnail-toggle-btn:hover,
.thumbnail-grid-btn:hover {
  color: white;
}

.thumbnail-toggle-btn {
  left: 50%;
  transform: translateX(calc(-150% - 1rem));
}
@media (min-width: 76.8rem) {
  .thumbnail-toggle-btn {
    left: calc(50% + 12rem);
  }
}

.thumbnail-grid-btn {
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 76.8rem) {
  .thumbnail-grid-btn {
    left: calc(50% + 12rem);
  }
}

.scroll-top-btn {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  background-color: #ff00ff;
  color: white;
  padding: 1.25rem 2rem;
  border-radius: 3rem;
  font-size: 1.75rem;
  letter-spacing: -1px;
  text-align: right;
  border: none;
  cursor: pointer;
  font-family: "Funnel Sans", sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 76.8rem) {
  .scroll-top-btn {
    display: block;
  }
}
.scroll-top-btn:hover {
  text-decoration: underline;
}

.mobile-feed-link {
  top: 1rem;
  right: 2rem;
  position: fixed;
  z-index: 1000;
}
@media (min-width: 76.8rem) {
  .mobile-feed-link {
    display: none;
  }
}
.mobile-feed-link a {
  font-size: 3rem;
  padding: 0 0.75rem;
}

.back-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  background-color: black;
  color: white;
  padding: 0.5rem 2rem 0.85rem 1.5rem;
  border-radius: 100px;
  font-size: 32px;
  display: flex;
  align-items: center;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
}
@media (min-width: 76.8rem) {
  .back-button {
    display: none;
  }
}
.back-button:before {
  content: url("../img/white.svg");
  width: 24px;
  height: 24px;
  rotate: 270deg;
  margin-right: 2rem;
  margin-left: -1rem;
  display: inline-block;
}

.modal {
  display: none; /* Initially hidden by default */
  position: fixed;
  z-index: 1000; /* High z-index to cover everything */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  position: relative;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
}

.full-image {
  display: none; /* Initially hidden, shown on load (controlled by JS) */
  max-width: 100vw;
  max-height: 90vh;
  object-fit: contain;
}

.loading-placeholder {
  display: flex; /* Initially flex (visible), hidden on load (controlled by JS) */
  justify-content: center;
  align-items: center;
  min-width: 200px;
  min-height: 200px;
  background-color: #333;
  color: white;
  font-size: 1.5rem;
  border-radius: 8px;
}

.close-btn {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  position: fixed;
  top: 2rem;
  right: 4rem;
  cursor: pointer;
  z-index: 1001; /* Ensure button is on top */
}

.image-title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 15px;
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
  .close-btn {
    font-size: 30px;
    right: 2rem;
  }
}
#modal-title-link {
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  left: 0;
}
#modal-title-link #modal-title {
  font-size: 2rem;
  letter-spacing: -1px;
  margin: 0;
  text-align: center;
}

.mobile-links {
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: flex-start;
  background-color: white;
}
@media (min-width: 76.8rem) {
  .mobile-links {
    display: none;
  }
}

.mobile {
  display: block;
}
@media (min-width: 76.8rem) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 76.8rem) {
  .desktop {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
