* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #18181a;
}
html {
  background-color: #18181a;
}
body {
  background-color: #18181a;
  padding: 0;
  margin: 0;
  overflow: hidden;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

h1 {
  font-size: 1.75rem;
  color: #f5f5f5;
  margin-top: 98px;
  margin-bottom: 8px;
}

/* .image::after {
  content: "";
  background-image: url("24.gif");
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
} */
/* .image::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
} */

h2 {
  color: #999;
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 48px;
  margin-top: 0px;
}

p {
  color: #8d8d8d;
  font-size: 1rem;
  max-width: 300px;
  line-height: 1.6;
}
p span {
  font-style: italic;
  color: #8d8d8d;
  font-weight: 300;
}
mark {
  color: white;
  background-color: transparent;
}

span {
  color: white;
}

menu {
  position: absolute;
  right: 24px;
  bottom: 0px;
  text-align: right;
  padding: 0px;
}

menu h2 {
  line-height: 32px;
  margin-bottom: 0px;
  width: 150px;
}

a {
  width: 100%;
  height: 36px;
  color: #8d8d8d;
  text-decoration: none;
}

section a {
  opacity: 0.33;
  color: #fff;
}

section a:hover {
  transition: opacity 200ms;

  opacity: 0.66;
}

.project-link {
  display: flex;
  align-items: center;
}

.no-link {
  cursor: none;
}

.no-link:hover {
  opacity: 0.33;
}
.no-link::after {
  display: none;
}
.no-link:hover::after {
  opacity: 0.33;
}

section a::after {
  content: "";
  background-image: url("aur.svg");
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  opacity: 0.33;
}

section a:hover::after {
  opacity: 0.66;
}

footer {
  bottom: 48px;
  position: absolute;

  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
}

button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 12px 2px;

  color: white;
  width: 74px;
  height: 100%;
  border: 1px solid #373737;
  background: #1f2023;

  box-sizing: border-box;
  box-shadow: 0px 0px 4.32658px rgba(0, 0, 0, 0.1),
    0px -0.721097px 3.60549px rgba(0, 0, 0, 0.08),
    0px 3.60549px 3.60549px rgba(0, 0, 0, 0.1),
    0px 1.08165px 1.44219px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
button:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2),
    0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.slider {
  scroll-snap-type: x mandatory;

  display: flex;
  -webkit-overflow-scrolling: touch;
  scroll-snap-stop: normal;
  overflow-x: scroll;
}
section {
  scroll-snap-align: start;
  height: calc(100vh - (300px + 120px + 2 * 24px));
  padding: 24px;
  padding-bottom: 300px;
  min-width: calc(100vw - 4 * 24px);
  justify-content: space-between;
  display: flex;
  flex-direction: column;

  opacity: 0.3;

  transition: opacity 500ms;
}

@media screen and (min-width: 800px) {
  section {
    scroll-snap-align: none;
    padding-left: 98px;
    /* opacity: 1; */
    min-width: calc(100vw / 3.5 - 1 * 98px);
  }

  .slider {
    cursor: grab;
  }
  body {
    padding-top: 120px;
  }
  menu {
    bottom: 30px;
    right: 98px;
  }
}

section:last-child {
  min-width: calc(100vw - 2 * 24px);
}
section.is-visible {
  opacity: 1;
}
