@import url(https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap);
@font-face {
  font-family: Kajiro;
  src: url(./assets/Kajiro.ttf);
  display: swap;
}
::-webkit-scrollbar {
  width: 0;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: white;
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 900;
  text-underline-offset: 4px;
  pointer-events: all;  
}
body {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
:is(#main, #back, #top) {
  width: 100%;
  height: 100vh;
}
#back img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 99%;
}
#top {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
#workingarea {
  margin: 0 auto;
  position: relative;
  width: 85%;
  max-width: 1920px;
  height: 100vh;
}
#nav {
  width: 100%;
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
}
:is(.nav-left, .nav-right) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 50px;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.nav-left h2 {
  font-family: "Ubuntu", sans-serif;
  color: white;
  font-size: 2.6vw;
  cursor: context-menu;
}
#content {
  position: absolute;
  top: 55%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cleft {
  min-width: 40%;
  -webkit-filter: drop-shadow(-5rem 0rem 8rem black);
          filter: drop-shadow(-5rem 0rem 8rem black);
}
.elm {
  position: relative;
  height: 9vw;
  overflow: hidden;
}
.elm h1:nth-child(1){
  top: 0;
}
.elm h1 {
  position: absolute;
  top: 100%;
  left: 0;
  font-family: "Kajiro";
  color: white;
  line-height: 0.9;
  font-weight: 100;
  font-size: 10vw;
  -webkit-backdrop-filter: blur(0.6px);
          backdrop-filter: blur(0.6px);
  letter-spacing: 0.01em;
  cursor: context-menu;
  border-radius: 95rem;
}
button {
  padding: 0.3vw 3vw;
  font-size: 2.83vw;
  font-family: "Kajiro";
  pointer-events: all;
  margin-top: 2vw;
  letter-spacing: 0.02em;
  border: none;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
button:hover {
  background-color: #fb003f;
  color: white;
  border: none;
}
.cright {
  width: 20%;
  color: azure;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.cright p {
  text-align: right;
  font-size: 15px;
  -webkit-filter: drop-shadow(0 0 1rem black);
          filter: drop-shadow(0 0 1rem black);
  line-height: 18px;
  font-family: "Ubuntu", sans-serif;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  border-radius: 43rem;
}
.author {
  width: 100%;
  height: 170px;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: aqua;
  overflow: hidden;
  border-radius: 10px;
  background: url(./assets/gfx23.jpg);
  background-size: cover;
  background-position-y: 54%;
}
.cright p:nth-child(3) {
  margin-bottom: 20px;
}
@media (min-width:320px) and (max-width:1024px) {
  #main{
    display: none;
  }
}