* {
  padding: 0;
  margin: 0;
  font-family: 'ABC Oracle', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
  letter-spacing: -1%;
  line-height: 110%;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

::-webkit-scrollbar {
  display: none;
}

h1 {
  color: black;
  font-size: 1rem;
}

h2 {
  color: black;
  font-size: 3rem;
}

h3 {
  color: black;
  font-size: 2rem;
}

p {
  color: black;
  font-size: 1rem;
}

body {
  width: 100%;
  height: 100dvh;
  background-color: white;
}

body a {
  color: black;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

body a:hover {
  opacity: 0.3;
}

body header {
  position: fixed;
  width: 100%;
  z-index: 18;
  font-size: 1rem;
  display: grid;
  grid-template-columns: 50% 50%;
  box-sizing: border-box;
  padding: 0.5rem 0.5rem;
  background-color: transparent;
}

body header #email {
  justify-self: end;
  display: block;
}
body header #about-button {
  cursor: pointer;
}
body #slider-left {
  left: 0;
  position: fixed;
  background-color: transparent;
  z-index: 11;
  height: 100vh;
  width: 50%;
  cursor: w-resize;
}
body #slider-right {
  right: 0;
  position: fixed;
  z-index: 11;
  background-color: transparent;
  height: 100vh;
  width: 50%;
  cursor: e-resize;
}
body .counter {
  right: 0;
  z-index: 14;
  bottom: 0;
  padding: 0.5rem 0.5rem;
  position: fixed;
}
body .project {
  left: 0;
  z-index: 14;
  bottom: 0;
  padding: 0.5rem 0.5rem;
  position: fixed;
}
body .images {
  margin: auto;
  position: relative;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}
body .images .image {
  margin-left: auto;
  margin-right: auto;
  padding-inline: 0.5rem;
  max-height: 100vh;
  max-width: 100%;
}
body #about {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 16;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.312);
  backdrop-filter: blur(50px);
  transition: opacity 0.4s ease, visibility 0.4s ease;
  will-change: auto;
  padding: 2rem 0.5rem;

}
body #about .about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 1 0 0;
  align-self: stretch;
}

body #about a {
  font-size: 2rem;
}

body #about .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  row-gap: 1.5rem;
  align-self: stretch;
  flex-wrap: wrap;
}

body #about .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 20rem;
  gap: 0.75rem;
  flex: 1 0 0;
}

@media screen and (max-width: 1200px) {
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  body #about a {
    font-size: 1.5rem;
  }
}