@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Shizuru&family=Syne+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Shizuru&display=swap');
.shizuru-regular {
  font-family: "Shizuru", system-ui;
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c {
  flex-flow: column;
}

.texCen {
  text-align: center;
}

.w100p {
  width: 100%;
}

body {
  --lightBg1: #fff;
  --lightBg2: #eee;
  --darkBg1: #111;
  --darkBg2: #222;
  --lightText1: #fff;
  --darkText2: #222;
  --darkText3: #333;
  --darkText5: #555;
  min-height: 100vh;
  background: url("../img/bg.jpg") center no-repeat fixed;
  background-size: cover;
  font-family: sans-serif;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column;
  font-family: Syne Mono;
}

html {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
}

.forceCenter {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.noBtn {
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

.button {
  padding: 7px 16px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--stdBg);
  color: #fff;
  letter-spacing: 1px;
  filter: hue-rotate(45deg);
}

.lined {
  text-align: center;
  width: max-content;
  --w: 100px;
}

.lined::before,
.lined::after {
  content: "";
  position: absolute;
  width: var(--w);
  height: 1px;
  background: var(--lightBg1);
  top: 50%;
}

.lined::before {
  left: calc(-1*var(--w));
}

.lined::after {
  right: calc(-1*var(--w));
}

@media screen and (max-width: 800px) {
  .lined {
    --w: 50px;
  }

  #main {
    flex-flow: column;
  }

  #main #work {
    height: 90%;
    justify-content: flex-start;
  }

  #main #nav {
    height: 10%;
  }
}


body>* ::-webkit-scrollbar {
  width: 0;
  height: 0;


}

body>* ::-moz-scrollbar {
  width: 0;
  height: 0;
}

body * {
  scrollbar-width: none;
}

#main {
  height: 100vh;
  color: #000c;

}

#main>div {
  width: 100%;
  height: 100%;
}

.slide{
  min-height: 90vh;
  
}
