*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{--black:#0a0a0a;--dark:#111;--card:#161616;--border:#1e1e1e;--mid:#555;--soft:#888;--light:#aaa;--white:#f5f4f0;--accent:#ffffff;--accent2:#ff6b35}
html{scroll-behavior:smooth}
body{background:var(--black);color:var(--white);  font-family: "Playwrite GB J", cursive;font-weight:300;overflow-x:hidden}
nav{position:fixed;top:0;left:0;right:0;z-index:1000;display:flex;align-items:center;justify-content:space-between;padding:18px 40px;background:rgba(10,10,10,.95);border-bottom:1px solid var(--border)}
.logo{  font-family: "Playwrite GB J", cursive;font-size:24px;color:var(--white);cursor:pointer;border:none;background:none}
.nav-links{display:flex;gap:28px;list-style:none}
.nav-links button{background:none;border:none;color:#666;font-size:20px;letter-spacing:2px;cursor:pointer;transition:color .3s;}
.nav-links button:hover,.nav-links button.active{color:var(--accent)}
.page{display:none;min-height:100dvh;font-family: sans-serif;padding-bottom: 40px;}
.page.active{display:block;background-color: #553e09;}
#home.active{display:flex;align-items:center;justify-content:center}
.menu-btn {
    background: transparent;
    box-shadow: none;
    border: none;
    color: #ffff;
    display: none;
}
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  .menu-btn span {
    font-size: 30px;
  }
  

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: #111;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links button {
    width: 100%;
    text-align: left;
    color: white;
  }
}


/* HOME */
#home{height:100dvh;position:relative;overflow:hidden}
.bg{position:absolute;inset:0;background:#080810}
.bg::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 25% 20%,#1a0533 0%,transparent 55%),radial-gradient(ellipse at 75% 70%,#0d1f3c 0%,transparent 55%)}
.star{position:absolute;background:#fff;border-radius:50%;animation:twinkle 3s infinite alternate}
@keyframes twinkle{0%{opacity:.2}100%{opacity:1}}
.moon{position:absolute;top:9%;right:12%;width:60px;height:60px;background:#fef3c7;border-radius:50%;box-shadow:0 0 30px 8px rgba(254,243,199,.3)}
.moon::before{content:'';position:absolute;top:14px;left:12px;width:13px;height:13px;background:rgba(180,160,80,.3);border-radius:50%}
.skyline{position:absolute;bottom:0;left:0;right:0;height:42%}
.bld{position:absolute;bottom:0;background:#0d0d0d;border-top:1px solid #1a1a1a}
.win{position:absolute;background:rgba(200,245,66,.45);animation:blink 4s infinite}
@keyframes blink{0%,88%,100%{opacity:1}90%,98%{opacity:0}}
.road{position:absolute;bottom:0;left:0;right:0;height:50px;background:#0e0e0e;border-top:1px solid #1a1a1a}
.road::before{content:'';position:absolute;top:50%;left:0;right:0;height:2px;background:repeating-linear-gradient(90deg,rgba(200,245,66,.2) 0 35px,transparent 35px 70px);transform:translateY(-50%)}
.car{position:absolute;bottom:7px;width:46px;height:20px;animation:drive 12s linear infinite}
.cbody{position:absolute;bottom:0;left:0;right:0;height:13px;background:var(--accent);border-radius:3px 3px 0 0}
.cbody::before{content:'';position:absolute;top:-9px;left:7px;right:7px;height:10px;background:#9bc233;border-radius:3px 3px 0 0}
.cbody::after{content:'';position:absolute;top:-9px;right:-2px;width:5px;height:5px;background:var(--accent2);border-radius:50%;box-shadow:0 0 5px var(--accent2)}
.wheel{position:absolute;bottom:-4px;width:10px;height:10px;background:#222;border:2px solid #555;border-radius:50%}
.wl{left:4px}.wr{right:4px}
@keyframes drive{0%{left:-70px}100%{left:105%}}
.lamp{position:absolute;bottom:45px}
.lp{width:2px;height:48px;background:#2a2a2a;margin:0 auto}
.lh{width:16px;height:4px;background:#2a2a2a;border-radius:2px;position:relative}
.lh::after{content:'';position:absolute;bottom:-3px;left:3px;width:10px;height:3px;background:#fef3c7;border-radius:50%;box-shadow:0 0 7px 3px rgba(254,243,199,.3)}
.bird{position:absolute;animation:fly 20s linear infinite}
.bird::before,.bird::after{content:'';position:absolute;width:10px;height:5px;border-top:1.5px solid rgba(200,200,200,.6);border-radius:50% 50% 0 0;animation:flap .5s ease-in-out infinite alternate}
.bird::before{left:-10px;transform-origin:right center}
.bird::after{left:0;transform-origin:left center}
@keyframes flap{0%{transform:rotate(-20deg)}100%{transform:rotate(20deg)}}
@keyframes fly{0%{left:105%;top:13%}100%{left:-5%;top:10%}}
.bird2{animation:fly2 28s linear infinite 9s}
@keyframes fly2{0%{left:105%;top:20%}100%{left:-5%;top:16%}}

/* HERO BOARD */
.board {
    position: absolute;
    right: 9%;
    z-index: 10;
    text-align: center;
    top: 21%;
    width: 500px;
    animation: reveal 1.2s cubic-bezier(.16, 1, .3, 1) forwards;
}
@keyframes reveal{0%{opacity:0;transform:translateY(40px)}100%{opacity:1;transform:translateY(0)}}
.board-tag{font-size:10px;letter-spacing:4px;color:var(--accent);text-transform:uppercase;margin-bottom:20px;animation:fu .8s .3s both}
.board-name{font-size:clamp(40px,6vw,68px);font-weight:700;line-height:1.05;margin-bottom:10px;animation:fu .8s .5s both}
.board-name em{font-style:italic;color:var(--accent)}
.board-sub{font-size:13px;letter-spacing:3px;text-transform:uppercase;color:var(--soft);margin-bottom:44px;animation:fu .8s .7s both}
.board-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;animation:fu .8s .9s both}
@keyframes fu{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}

/* BUTTONS */
.btn{padding:16px 24px;font-weight:300;font-size:18px;letter-spacing:2px;border:none;cursor:pointer;transition:all .3s;position:relative;overflow:hidden;text-decoration:none;display:inline-block;background-color: #000;color: #fff;}
.btn:hover{background-color:#fff;color:#000}

/* INNER PAGES */
.inner {
    padding: 110px 40px 20px;
    max-width: 100%;
    margin: 0 auto;
}.pg-title{font-size:clamp(30px,4.5vw,45px);line-height:1.1;margin-bottom:30px;color:var(--white)}
.pg-title1 {
  font-size:clamp(30px,4.5vw,45px);line-height:1.1;margin-bottom:30px;color:var(--white);
  margin-top: 30px;
}
.pg-title em{font-style:italic;color:var(--accent)}
.divider{border:none;border-top:4px solid var(--border);margin:30px 0}

/* ABOUT */
.ag{display:grid;grid-template-columns:1fr 2fr;gap:40px;align-items: center;    font-family: "Playwrite GB J", cursive;
}
.at p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}.at p strong{color:var(--white);font-weight:500}
.stats{display:grid;grid-template-columns:1fr 1fr;gap:20px;align-content:start;width: 100%;
  height: 500px;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  background-position: 68%;
  filter: grayscale(50%);
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.219),
      rgba(0, 0, 0, 0.815)
    ),
    url("../img/hero-bg.jpg");}.stat{padding:22px;border:1px solid var(--border);background:var(--dark);transition:border-color .3s}
.stat:hover{border-color:var(--accent)}
.stn{font-size:40px;color:var(--accent);line-height:1;margin-bottom:5px}
.stl{font-size:9px;letter-spacing:2px;text-transform:uppercase;color:var(--mid)}
.stitle {
    font-size: 34px;
    padding: 10px 40px 0px;
    max-width: 100%;
    margin: 0 auto;
    color: var(--white);
}.skg {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 40px 40px 20px;
    max-width: 100%;
    margin: 0 auto;
}
.skg2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px 0px 0px;
    max-width: 980px;
    margin: 0 auto;
}
.skg2 .sg {
        height: 200px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.skg2 .sg:nth-child(1){
      background-image: url(../img/doodles/img1.jpg);
}
.skg2 .sg:nth-child(2){
      background-image: url(../img/doodles/img5.jpg);
}
.skg2 .sg:nth-child(3){
      background-image: url(../img/doodles/img3.jpg);
}
.skg2 .sg:nth-child(4){
      background-image: url(../img/doodles/img4.jpg);
}

.sg{padding:18px;border:1px solid var(--border);background:var(--dark);transition:all .3s}
.sg:hover{border-color:var(--accent);transform:translateY(-3px)}
.sgl{font-size:16px;letter-spacing:3px;text-transform:uppercase;color:var(--accent);margin-bottom:12px}
.tag {
    display: inline-block;
    padding: 8px 8px;
    background: rgb(179 179 179 / 7%);
    border: 1px solid rgb(118 118 118 / 12%);
    font-size: 12px;
    color: var(--light);
    margin: 7px 8px 0 0;
    border-radius: 2px;
}.hobs{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:44px}
.hob{padding:26px 16px;border:1px solid var(--border);background:var(--dark);text-align:center;transition:all .3s}
.hob:hover{border-color:var(--accent);transform:translateY(-4px)}
.hi{font-size:28px;margin-bottom:10px;display:block}
.hn{font-size:9px;letter-spacing:2px;text-transform:uppercase;color:var(--mid)}
.artbox{padding:36px;border:1px solid var(--border);background:var(--dark);text-align:center}
.artbox h3{font-size:22px;margin-bottom:12px;color:var(--white)}
.artbox p{color:var(--mid);font-size:13px;max-width:420px;margin:0 auto 22px;line-height:1.7}
.alink{display:inline-flex;align-items:center;gap:7px;padding:11px 24px;border:1px solid var(--accent);color:var(--accent);text-decoration:none;font-size:10px;letter-spacing:2px;text-transform:uppercase;transition:all .3s;cursor:pointer;background:none;}
.alink:hover{background:var(--accent);color:var(--black)}

/* WORK */
.pg{display:grid;grid-template-columns:repeat(2, 1fr);gap:24px;margin-bottom:2px}
.pc{background:var(--dark);padding:36px;position:relative;overflow:hidden;transition:background .3s}
.pg1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Card */
.pg1 .pc {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4;
  background: #111;
  padding: 16px;
}

/* Video + Image */
.pg1 .pc video,
.pg1 .pc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback image */
.pg1 .fallback-img {
  display: none;
}

/* Overlay */
.pg1 .pc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65),
    rgba(0,0,0,.15),
    transparent
  );
}



/* Hover Effect */
.pg1 .pc video,
.pg1 .pc img {
  transition: transform .5s ease;
}

.pg1 .pc:hover video,
.pg1 .pc:hover img {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1024px) {
  .pg1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pg1 {
    grid-template-columns: 1fr 1fr;
  }

  .pg1 .pc {
    aspect-ratio: 5 / 5;
        padding: 16px;
  }
}
.pc:hover{background:#141414}
.pc::before{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background:var(--accent);transform:scaleY(0);transform-origin:top;transition:transform .35s ease}
.pc:hover::before{transform:scaleY(1)}
.wide{grid-column:1/-1}
.wide .pi{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:start}
.pname{font-size:24px;color:var(--white);margin-bottom:8px;line-height:1.2}
.prole{font-size:12px;letter-spacing:2px;color:var(--accent);margin-bottom:14px}
.pdesc{font-size:16px;line-height:1.5;color:#c5c5c5;margin-bottom:18px}
.ptags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:18px}
.ptag{padding:8px 12px;border:1px solid #6f6969;font-size:11px;letter-spacing:1px;color:#e5e5e5;text-transform:uppercase}
.pimp{padding:12px 14px;background:rgba(200,245,66,.03);border-left:2px solid var(--accent);font-size:13px;color:#d2d2d2;line-height:1.6}
.pimp strong{color:var(--accent)}
.tl{position:relative;padding-left:24px;padding-top:6px;background: #131313;margin-top: 30px;
    padding: 30px 50px 0px;
  max-width: 100%;
    margin: 40px 40px 0px;}
.tl::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 37px;
    bottom: 40px;
    width: 1px;
    background: #ffffff;
}.tli{position:relative;padding-bottom:36px}
.tli::before{content:'';position:absolute;left:-28px;top:7px;width:7px;height:7px;background:var(--accent);border-radius:50%}
.tld {
    font-size: 10px;
    color: #bebebe;
    letter-spacing: 2px;
    margin-bottom: 5px;
}.tlc{font-size:20px;color:var(--white);margin-bottom:8px}
.tlr{font-size:12px;letter-spacing:2px;color:var(--accent);margin-bottom:8px}
.tldesc {
    font-size: 15px;
    line-height: 1.4;
    color: #999999;
    max-width: 100%;
}
/* CONTACT */
.contact-inner{padding:110px 48px 60px;max-width:980px;margin:0 auto;min-height:100dvh;display:flex;flex-direction:column;justify-content:flex-start}
.ci {
    font-size: 18px;
    line-height: 1.85;
    color: #dbdbdb;
    margin-bottom: 25px;
    max-width: 70%;
}.cls{display:flex;gap:20px;margin-bottom:25px}
.cls a i {
    font-size: 30px;
    font-weight: 500;
    color: #c5c5c5;
}
.cls a i:hover {
  color: #fff;
      font-weight: 600;

}
.cl{display:flex;align-items:center;justify-content:space-between;padding:18px 24px;background:var(--dark);border:1px solid var(--border);color:var(--white);font-size:13px;transition:all .3s;cursor:pointer;text-align:left;width:100%}
.cl:hover{background:var(--accent);color:var(--black);border-color:var(--accent)}
.cll{font-size:9px;letter-spacing:3px;text-transform:uppercase;color:#333;transition:color .3s}
.cl:hover .cll{color:rgba(0,0,0,.5)}
.avail{display:flex;align-items:center;gap:10px;font-size:16px;color:#fff}
.dot{width:10px;height:10px;background:#4ade80;border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,.4)}50%{box-shadow:0 0 0 5px rgba(74,222,128,0)}}
.funfact {
    position: absolute;
    font-size: 13px;
    bottom: 37%;
    line-height: 16px;
    right: 15%;
    width: 37%;
    background: #00000094;
    padding: 10px;
    border-radius: 8px;
}
@media(max-width:768px) {
  nav{padding:14px 16px}
  .funfact {
        font-size: 7px;
        padding: 8px;
        line-height: 12px;
    }
    .tl {
      max-width: 90%;
    }
 .board {
        right: 9%;
        top: 26%;
        max-width: 619px;
        width: 316px;
    }
  .btns{flex-direction:column}
  .inner,.contact-inner{padding:80px 20px 0px}
  .ag,.skg,.pg{grid-template-columns:1fr}
  .hobs{grid-template-columns:1fr 1fr}
  .wide .pi{grid-template-columns:1fr}
}

/* CSS ARTWORK */
.artwork{position:absolute;inset:0;background:#080810;overflow:hidden; display: flex;justify-content: center;align-items: center;padding-top: 78px;}
.artwork::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 25% 20%,#1a0533 0%,transparent 55%),radial-gradient(ellipse at 75% 70%,#0d1f3c 0%,transparent 55%)}

.art {
    width: 11em;
    height: 12em;
    position: relative;
    margin: auto;
    overflow: hidden;
    font-size: 9vmin;
}
      .human {
    position: absolute;
    top: 46%;
    width: 5.76em;
    height: 75%;
    left: 8%;
}
            .human-head {
                background: #210c1c;
                height: 15%;
                width: 27%;
                left: 25%;
                top: 4%;
                position: absolute;
                border-radius: 54% 49% 74% 29%/36% 36% 67% 52%;
                transform: rotate(354deg);
                box-shadow: 0px -3px 5px 0 #dac300;
                z-index: 3;
            }
            .human-head.head2 {
    top: 12%;
    box-shadow: none;
    left: 20%;
    width: 17%;
    transform: rotate(10deg);
    border-top: 0.1em solid #d22a70;
    z-index: 5;
}
            .human-face {
                position: absolute;
                height: 5%;
                width: 7%;
                background: #d76963;
                left: 41%;
                top: 13%;
                border-radius: 41% 59% 55% 45%/31% 50% 50% 69%;
                transform: rotate(112deg);
                z-index: 2;
            }
            .human-face::before {
                height: 83%;
                width: 77%;
                position: absolute;
                content: "";
                background: #d1675f;
                left: 83%;
                top: 46%;
            }
            .human-neck {
                position: absolute;
                width: 9%;
                height: 12%;
                background: #760333;
                left: 27%;
                top: 18%;
                transform: rotate(39deg);
            }
            .human-neck::before {
                position: absolute;
                content: "";
                height: 45%;
                width: 82%;
                background: #121619;
                left: 35%;
                top: -27%;
                border-radius: 100%;
                transform: rotate(342deg);
            }
            .human-neck::after {
                position: absolute;
                content: "";
                height: 39%;
                width: 77%;
                background: #64012a;
                left: 35%;
                top: -27%;
                border-radius: 100%;
                transform: rotate(342deg);
            }
            .human-top {
                position: absolute;
                height: 19%;
                width: 16%;
                background: #760333;
                left: 21.5%;
                top: 19.9%;
                border-radius: 67% 55% 0 26%;
                transform: rotate(9deg);
            }
            .human-chest {
                z-index: 3;
                content: "";
                position: absolute;
                background: #760333;
                height: 14%;
                width: 16%;
                left: 27%;
                top: 25%;
                transform: rotate(335deg);
                border-radius: 0 0 8% 15%;
                border-right: 0.01em solid #86054b;
            }
            .human-chest::before {
                position: absolute;
                content: "";
                height: 1.51em;
                width: 0.6em;
                background: #63022a;
                border-radius: 45% 45% 0 37%;
                left: 0;
                top: -4%;
                transform: rotate3d(1, 1, 1, 1deg);
                border-left: 0.1em solid #760333;
                border-right: 0.02em solid #8c073e;
                box-shadow: -1px 5px 0 1px #760333;
            }
            .human-chest::after {
                content: "";
                position: absolute;
                height: 35%;
                width: 100%;
                background: #63022a;
                top: 85%;
                left: 57%;
                border-radius: 35% 100% 100% 0;
                border-top: 0.02em solid #8c073e;
                box-shadow: 0 5px 0 0 #760333;
                transform: rotate3d(1, 1, 1, 9deg);
            }
          .chair {
    height: 15%;
    width: 20%;
    position: absolute;
    top: 70%;
    left: 4%;
    transform: rotate(343deg);
    background: 0 0;
    border-radius: 100% 16% 55% 0;
    border-right: 0.5em solid #574d50;
}
            .chair-seat {
    position: absolute;
    height: 0.4em;
    width: 2.5em;
    background: #281b2c;
    top: 111%;
    left: 71%;
    border-radius: 0 0 53% 0;
    transform: rotate(17deg);
}
            .chair::before {
                position: absolute;
                content: "";
                width: 55%;
                height: 55%;
                background: #574d50;
                left: 102%;
                top: 22%;
                border-radius: 23% 55% 55% 55%;
            }
            .chair::after {
                position: absolute;
                content: "";
                height: 55%;
                width: 55%;
                left: 98%;
                background: #574d50;
                top: 49%;
                transform: rotate(16deg);
            }
            .chair-head {
                position: absolute;
                width: 1.75em;
                height: 1.32em;
                background: #574d50;
                clip-path: circle(50% at 50% 50%);
                left: 93%;
                transform: rotate(16deg);
                top: 38%;
            }
            i.chair-leg.leg-1 {
                position: absolute;
                height: 116%;
                width: 16%;
                background: #281b2c;
                left: 52%;
                top: 100%;
                transform: rotate(31deg);
            }
            i.chair-leg.leg-2 {
                position: absolute;
                height: 126%;
                width: 15%;
                background: #281b2c;
                left: 183%;
                top: 123%;
                transform: rotate(355deg);
            }
 .window {
    width: 85%;
    height: 96.5%;
    position: absolute;
    left: 6%;
    top: 0%;
    overflow: hidden;
    background: radial-gradient(circle, rgb(59 130 121) 15%, rgb(41 98 107) 49%, rgb(21 46 57) 100%);
    border: 0.4em solid #3b2f13;
}
            i.window-shade:nth-child(1) {
                position: absolute;
                width: 0;
                height: 0;
                border-top: 2.5em solid #143b4578;
                border-right: 2.5em solid transparent;
            }
            i.window-shade:nth-child(2) {
    position: absolute;
    width: 4%;
    height: 89%;
    background: #143b4578;
    transform: rotate(46deg);
    left: 34%;
    top: -16%;
}
            i.window-shade:nth-child(3) {
    position: absolute;
    width: 4%;
    height: 90%;
    background: #143b4578;
    transform: rotate(45deg);
    left: 59%;
    top: 6%;
}
            i.window-shade:nth-child(4) {
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 4.64em solid #1d4f5a;
    border-left: 3.7em solid transparent;
    top: 57.6%;
    left: 57.5%;
}
            .wall {
                background-color: #393030;
                display: grid;
                grid-template-columns: repeat(20, 1fr);
                grid-gap: 0.002em;
                width: 100%;
                height: 100%;
                position: absolute;
                left: 0%;
                top: 0%;
            }
            .brick {
    background-color: #180c0b;
    border: 2px solid #0d0a0a;
    box-shadow: inset 0 0 8px rgb(211 153 153 / 31%);
    display: inline-block;
    grid-column: auto / span 2;
}
            .brick:nth-child(9n + 2) {
                background-color: #110909;
            }
            .brick:nth-child(21n + 1),
            .brick:nth-child(21n + 11) {
                grid-column: auto/span 1;
            }
            .brick--broken {
                opacity: 0;
            }
  .hanging-bulbs {
    position: absolute;
    width: 5em;
    height: 55%;
    left: 4%;
    top: -14%;
}
            .hanging-bulb {
                position: absolute;
                top: 0;
                width: 16%;
                height: 53%;
                left: 36%;
                animation: hanging 2s ease infinite alternate;
            }
            @keyframes hanging {
                0% {
                    transform: rotate(-1deg);
                    transform-origin: top center;
                }
                100% {
                    transform: rotate(1deg);
                    transform-origin: top center;
                }
            }
            .hanging-bulb::before {
                position: absolute;
                content: "";
                width: 4%;
                height: 81%;
                background: #382f2f;
                top: 7%;
                left: 41%;
            }
            .hanging-bulb::after {
                position: absolute;
                content: "";
                border-bottom: 100px solid red;
                border-left: 25px solid transparent;
                border-right: 25px solid transparent;
                height: 0;
                width: 100px;
            }
            .hanging-bulb::after {
                position: absolute;
                content: "";
                border-bottom: 0.25em solid #382f2f;
                border-left: 0.1em solid transparent;
                border-right: 0.1em solid transparent;
                height: 0;
                width: 0.3em;
                top: 71%;
                left: 21%;
            }
            .hanging-bulb:nth-child(2)::after {
                top: 74%;
                width: 0.3em;
                left: 22%;
                border-bottom: 0.25em solid #382f2f;
            }
            .hanging-bulb:nth-child(3)::after {
                top: 75%;
                width: 0.3em;
                left: 23%;
                border-bottom: 0.22em solid #382f2f;
            }
            .hanging-bulb:nth-child(4)::after {
              top: 77%;
              width: 0.3em;
                left: 27%;
                border-bottom: 0.22em solid #382f2f;
            }
            .hanging-bulb:nth-child(5)::after {
                width: 0.3em;
                top: 77%;
                left: 26%;
                border-bottom: 0.18em solid #382f2f;
            }
            .hanging-bulb:nth-child(6)::after {
                top: 84%;
                width: 0.3em;
                left: 23%;
                border-bottom: 0.22em solid #382f2f;
            }
            .hanging-bulb:nth-child(2) {
                left: 57%;
                height: 61%;
            }
            .hanging-bulb:nth-child(3) {
                left: 69%;
                height: 49%;
            }
            .hanging-bulb:nth-child(4) {
                left: 30%;
                height: 72%;
            }
            .hanging-bulb:nth-child(5) {
                left: 15%;
                height: 64%;
            }
            .hanging-bulb:nth-child(6) {
                left: 47%;
                height: 84%;
            }
            .bulb {
                position: absolute;
                height: 20%;
                width: 86%;
                background-image: radial-gradient(circle, #bbab03 -21%, #f8b002 51%);
                box-shadow:
                    1px -13px 46px -19px #b19f4e,
                    14px 15px 14px 1px #a59955;
                border-radius: 27% 50% 50% 50%;
                left: 0;
                top: 78%;
                transform: rotate(42deg);
            }
            .bulb::before {
                position: absolute;
                content: "";
                height: 47%;
                width: 47%;
                height: 0.34em;
                width: 0.34em;
                background: #fffef6;
                border-radius: 0 50% 50% 50%;
                transform: rotate(359deg);
                top: 20%;
                left: 18%;
            }
            .bulb::after {
                position: absolute;
                content: "";
                transform: rotate(77deg);
                top: 8%;
                left: 12%;
                width: 0;
                height: 0;
                border-left: 0.15em solid transparent;
                border-right: 0.15em solid transparent;
                border-bottom: 0.25em solid #fffef6;
            }
            .hanging-bulb:nth-child(2) .bulb {
                height: 18%;
                width: 91%;
                top: 81%;
            }
            .hanging-bulb:nth-child(3) .bulb {
                left: 8%;
                top: 82%;
                width: 74%;
                height: 18%;
            }
            .hanging-bulb:nth-child(4) .bulb {
                top: 82%;
                border-radius: 0 100% 17% 100%;
                height: 15%;
                width: 85%;
                left: 3%;
            }
            .hanging-bulb:nth-child(5) .bulb {
                left: 10%;
                top: 82%;
                border-radius: 0 100% 17% 100%;
                width: 72%;
                height: 14%;
            }
            .hanging-bulb:nth-child(6) .bulb {
                left: 6%;
                top: 88%;
                height: 11%;
                width: 74%;
            }
.radio-stand {
    position: absolute;
    height: 3%;
    width: 31%;
    background: #705323;
    top: 21%;
    right: -1%;
    border-radius: 10% 0 0 5%;
    box-shadow: 0.06em 0.1em 0.1em 0 #261e1e;
    overflow: hidden;
    z-index: 1;
}
    .radio-shadow {
    position: absolute;
    width: 44%;
    height: 21%;
    background: #00000073;
    transform: rotate3d(1, 1, 1, 279deg);
    left: 69%;
    top: 13%;
    overflow: hidden;
    border-radius: 0 12% 0 0;
}
.radio {
    position: absolute;
    width: 2.8em;
    height: 10%;
    background: #8e8475;
    top: 11.2%;
    right: 2%;
    border-radius: 3px;
    display: flex;
    z-index: 2;
}
            .radio-speaker {
                flex-grow: 3;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
            }
            .speaker-line {
                position: absolute;
                width: 100%;
                height: 1%;
                background: #594f3d;
                top: 5%;
            }
            .speaker-line::after,
            .speaker-line::before {
                position: absolute;
                content: "";
                width: 100%;
                height: 11%;
                background: #594f3d;
            }
            .speaker-line::before {
                margin-top: 4%;
            }
            .speaker-line::after {
                margin-top: 7%;
            }
            .speaker-line:nth-child(2) {
                top: 14%;
            }
            .radio-speaker::after {
                position: absolute;
                width: 12%;
                height: 10%;
                background: #403634;
                content: "";
                bottom: 6%;
                right: 5%;
                border-radius: 50%;
                box-shadow: -0.02em -0.01em 2px 0.003em #4f4f4f;
            }
            .radio-speaker.speaker--right::after {
                right: unset;
                left: 5%;
            }
            .radio-controller {
                flex-grow: 2;
                border-left: 1px solid #534b49;
                border-right: 1px solid #534b49;
                display: flex;
                flex-direction: column;
            }
            .controller-box {
                flex-grow: 1;
                position: relative;
                border-bottom: 0.02em solid #625b4f;
            }
            .controller-box::after,
            .controller-box::before {
                content: "";
                position: absolute;
                background: #625b4f;
            }
            .controller-box::before {
                width: 3%;
                height: 102%;
                left: 50%;
            }
            .controller-box::after {
                width: 102%;
                height: 6%;
                bottom: 50%;
            }
            .controller {
                flex-grow: 4;
                position: relative;
            }
            .sound-controller {
                height: 18%;
                width: 26%;
                background: #918e89;
                border-radius: 50%;
                box-shadow: 4px 2px 2px 0 #3c3a3a;
                position: absolute;
                right: 15%;
                top: 4%;
            }
            .sound-controller::after,
            .sound-controller::before {
                position: absolute;
                width: 55%;
                height: 55%;
                background: #747063;
                content: "";
                border-radius: 55%;
                top: 40%;
            }
            .sound-controller::before {
                left: -205%;
            }
            .sound-controller::after {
                left: -105%;
            }
            .cassette {
                width: 70%;
                height: 30%;
                border: 0.03em solid #3e3e3e;
                position: absolute;
                top: 30%;
                left: 10%;
            }
            .cassette-circle {
                display: flex;
                position: absolute;
                top: 15%;
                justify-content: space-around;
                align-items: center;
                width: 100%;
            }
            .cassette-circle .gear {
                width: 0.15em;
                height: 0.15em;
                background: #352633;
                border-radius: 100%;
            }
            .gear {
                position: relative;
                width: 200px;
                height: 200px;
                margin: auto;
                background: #fff;
                border-radius: 50%;
                animation-name: spin;
                animation-duration: 4s;
                animation-iteration-count: infinite;
                animation-timing-function: linear;
            }
            .gear .center {
                position: absolute;
                top: 43%;
                left: 37%;
                z-index: 10;
                width: 0.03em;
                height: 0.03em;
                background: #989898;
                border-radius: 50%;
            }
            .tooth {
                position: absolute;
                top: 25%;
                left: 44%;
                z-index: 1;
                width: 0.016em;
                height: 0.08em;
                background: #989898;
            }
            .tooth:nth-child(2) {
                transform: rotate(45deg);
            }
            .tooth:nth-child(3) {
                transform: rotate(90deg);
            }
            .tooth:nth-child(4) {
                transform: rotate(135deg);
            }
            @keyframes spin {
                from {
                    transform: rotate(0);
                }
                to {
                    transform: rotate(360deg);
                }
            }
            .cassette-line {
                height: 0.1em;
                width: 107%;
                background: #352633;
                bottom: -1px;
                position: absolute;
                left: -1px;
            }
            .controller::before {
                position: absolute;
                bottom: 0.16em;
                height: 0.05em;
                width: 100%;
                background: #352633;
                content: "";
            }
            .controller::after {
                position: absolute;
                bottom: 0.24em;
                height: 0.03em;
                width: 100%;
                background: #352633;
                content: "";
            }
            .speaker {
                width: 66%;
                height: 56%;
                background: #352633;
                border-radius: 50%;
                box-shadow: 0 0 0 0.03em #352633;
                border: 0.03em solid #8f8776;
                z-index: 1;
                display: flex;
                justify-content: center;
                align-items: center;
                animation: elastic 1s infinite ease;
            }
            @keyframes elastic {
                0% {
                    transform: scale(1.1);
                }
                15% {
                    transform: scale(1.15);
                }
                35% {
                    transform: scale(1.2);
                }
                70% {
                    transform: scale(1.15);
                }
                90% {
                    transform: scale(1.1);
                }
                100% {
                    transform: scale(1);
                }
            }
            .cicle {
                width: 20%;
                height: 20%;
                background: #28101e;
                border-radius: 50%;
                box-shadow: -2px 0 2px 0 #756164;
            }
        .tshirt-hanger {
    position: absolute;
    top: 34%;
    left: 1%;
}
       .tshirt-shadow {
    position: absolute;
    width: 27%;
    height: 30%;
    background: #00000073;
    transform: rotate3d(2, -3, 1, 293deg);
    left: -9%;
    top: 33%;
    overflow: hidden;
    border-radius: 7% 50% 15% 20%;
}
            .hanger {
                position: absolute;
                top: -0.26em;
                left: 0.64em;
                height: 0.15em;
                width: 0.2em;
                border-radius: 1em 1em 0 0;
                background-color: #3b2f13;
                content: "";
                box-shadow: 1px -3px 0 3px #000;
            }
            .hanger::after {
                position: absolute;
                content: "";
                height: 0.8em;
                width: 0.08em;
                top: 20%;
                left: -0.03em;
                background: #000;
            }
            .tshirt {
                position: absolute;
                width: 0.9em;
                box-sizing: content-box;
                border-width: 1.9em 0.35em 0;
                border-style: solid;
                border-color: #000 transparent;
                left: -0.1em;
                top: 0.6em;
                border-radius: 8%;
            }
            .tshirt::before {
                content: "";
                position: absolute;
                height: 0;
                width: 0;
                top: -5.45em;
                left: -0.35em;
                border-width: 3.02em 0.8em 0.6em;
                border-style: solid;
                border-color: transparent transparent #000;
                border-radius: 5%;
            }
            .tshirt::after {
    position: absolute;
    content: "";
    border-bottom: 0.4em solid #000;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    height: 0;
    width: 0.9em;
    top: -2.5em;
    left: 0;
}
            .collar {
                border-style: solid;
                border-color: transparent transparent #3b2f13 transparent;
                border-width: 0 0.16em 0.26em 0.16em;
                height: 0;
                width: 0.26em;
                box-sizing: content-box;
                margin: 0;
                position: absolute;
                z-index: 1;
                top: -2.34em;
                left: 0.14em;
            }
            .collar::after {
                content: "";
                position: absolute;
                top: 0.25em;
                left: -0.16em;
                width: 0;
                height: 0;
                border-style: solid;
                border-color: #3b2f13 transparent transparent transparent;
                border-width: 0.24em 0.3em 0 0.28em;
            }
            .collar::before {
                position: absolute;
                top: 0.26em;
                left: -0.2em;
                height: 0.4em;
                width: 0.65em;
                border-radius: 0.5em 0 2em 2em;
                background-color: #000;
                content: "";
                box-shadow: 0 1px 0 1px #242424;
            }
            .text {
                font-size: 17%;
                text-transform: uppercase;
                line-height: 1.3;
                font-weight: bolder;
                color: #fff;
                position: absolute;
                top: -7em;
                left: 0.7em;
                transform: rotate(354deg);
            }
         .table {
    position: absolute;
    width: 34%;
    height: 3%;
    background: #817f76;
    left: 39%;
    top: 70%;
    border-radius: 100%;
    box-shadow: 0 5px 0 5px #443c3f;
}
            .table::before {
                content: "";
                position: absolute;
                left: 48%;
                top: 1.6em;
                z-index: 2;
                width: 0;
                height: 0;
                border: 0.5em solid #2d2b25;
                border-bottom: 1.5em solid #4e4e48;
                border-right: #f0f8ff;
                border-left: 0.267em solid #4e4e48;
            }
            .table::after {
                content: "";
                position: absolute;
                height: 1.2em;
                width: 7%;
                background: #2e2b25;
                left: 48%;
                top: 0.46em;
                z-index: 2;
            }
            .human-legs {
                position: absolute;
                width: 49%;
                height: 17%;
                background: #031730;
                left: 26%;
                top: 35%;
                border-radius: 0 33% 0 0;
            }
            .human-leg {
                position: absolute;
                height: 55%;
                background: #031730;
                left: 61%;
                width: 60%;
                transform: rotate(75deg);
                top: 66%;
                border-radius: 55% 50% 48% 35%;
            }
            .human-leg::before {
                position: absolute;
                content: "";
                height: 85%;
                width: 87%;
                top: 0;
                background: #031730;
                left: 76%;
                border-radius: 25% 25% 6% 11%;
                border-bottom: 0.01em solid #505050;
            }
            .human-leg:nth-child(2)::before {
                background: #031730;
                border-bottom: 0.01em solid #505050;
                top: 8%;
                transform: rotate(1deg);
                width: 76%;
                height: 77%;
                left: 83%;
            }
            .human-leg:nth-child(2) {
                width: 60%;
                left: 63%;
                top: 30%;
                transform: rotate(62deg);
                border-bottom: 0.01em solid #505050;
            }
           .paper {
    width: 0;
    height: 0;
    border: 0.7em solid transparent;
    border-bottom: 0.3em solid #e5e5e5;
    position: absolute;
    top: 62.1%;
    left: 33.7%;
    transform: rotate3d(1, 1, 1, 342deg);
    z-index: 3;
}
            .paper::before {
                content: "";
                position: absolute;
                left: -0.7em;
                top: 0.3em;
                width: 0;
                height: 0;
                border: 0.7em solid transparent;
                border-top: 0.9em solid #ffff;
                transform: rotate3d(1, 1, 1, 1deg);
                box-shadow: 0 -5px 3px -3px #969696;
            }
            .paper-2 {
    left: 40%;
    top: 63%;
    width: 0;
    height: 0;
    border-top: 1.5em solid #6a6a6a;
    border-left: 1em solid #fff;
    position: absolute;
    transform: rotate3d(1, 1, 1, 198deg);
    box-shadow: 12px 10px 9px -1px #807f7f;
    z-index: 2;
}
            .paper-3 {
    left: 49%;
    top: 65.95%;
    width: 0;
    height: 0;
    border-bottom: 1em solid transparent;
    border-left: 0.9em solid #c6c6c6;
    position: absolute;
    transform: rotate3d(1, 1, 1, 65deg);
    border-top-left-radius: 31%;
}
            .paper-4 {
    position: absolute;
    width: 22%;
    height: 2%;
    background: #e5e5e5;
    top: 70%;
    left: 32%;
    z-index: 1;
    transform: rotate3d(1.5, 1.9, 1.6, 229deg);
    box-shadow: 0 0.25em 0.03em 0.4em #fff;
    border-radius: 0 0 20% 0;
}
            .human-hand {
                position: absolute;
                width: 21%;
                height: 3.6%;
                background: #c97a67;
                left: 39%;
                top: 27%;
                transform: rotate(309deg);
                border-radius: 0 100% 178% 55%;
                border-top: 0.03em solid #fff;
            }
            .human-hand::after {
                position: absolute;
                content: "";
                width: 17%;
                height: 39%;
                background: #ca7b67;
                left: 109%;
                border-radius: 10% 43% 55% 0;
                top: 3%;
                transform: rotate(56deg);
            }
            .human-hand::before {
                position: absolute;
                content: "";
                width: 15%;
                height: 29%;
                left: 116%;
                background-image: linear-gradient(to right, #d1675f, #d26a62, #d36d65, #d37068, #d4736b);
                top: 55%;
                transform: rotate(46deg);
                border-radius: 0 35% 35% 0;
                box-shadow:
                    0 5px 0 0 #ca7b67,
                    0 14px 0 0 #ca7b67,
                    0 10px 0 0 #ca7b67;
            }
   .cup {
    height: 4%;
    width: 5%;
    border-radius: 30% 50% 50% 50% / 0 0 135% 135%;
    z-index: 1;
    background-color: #ededed;
    margin: auto;
    position: absolute;
    top: 63%;
    left: 35%;
    transform: rotate3d(1, 1, 1, 355deg);
}
            .cup:before {
    content: "";
    position: absolute;
    margin-top: -4px;
    margin-left: 1px;
    height: 0.2em;
    width: 0.48em;
    border-radius: 50%;
    z-index: 3;
    background-color: #000;
    background-image: linear-gradient(60deg, #3a3434 0, #565758 74%);
}
     .cup:after {
    content: "";
    position: absolute;
    margin-top: -5px;
    margin-left: 0;
    height: 44%;
    width: 102%;
    border-radius: 50%;
    z-index: 2;
    background-color: #bdbdbd;
}
            .tea {
    position: absolute;
    margin-top: -3px;
    margin-left: 2px;
    height: 0.165em;
    width: 0.41em;
    z-index: 4;
    border-radius: 50% 50% 50% 50%;
    background-color: #1a1716;
    background-image: linear-gradient(315deg, #27190f 0, #4d3028 74%);
}
            .steam {
    position: absolute;
    width: 13%;
    height: 10%;
    left: 32%;
    background-image: radial-gradient(circle, #dfe1e5, #bdbec1, #9b9c9e, #7b7b7c, #5c5c5c);
    top: 54%;
    clip-path: polygon(30% 8%, 53% 15%, 60% 23%, 61% 32%, 57% 39%, 46% 43%, 63% 46%, 72% 54%, 75% 60%, 72% 67%, 63% 74%, 56% 84%, 60% 95%, 54% 91%, 50% 83%, 52% 74%, 57% 62%, 48% 56%, 34% 53%, 29% 52%, 16% 49%, 12% 48%, 10% 41%, 16% 35%, 32% 33%, 42% 28%, 40% 16%);
    transform: rotate(26deg);
    z-index: 2;
    animation: float 9s ease-out infinite;
}
            .steam-1 {
    position: absolute;
    width: 6%;
    height: 6%;
    left: 40%;
    background-image: radial-gradient(circle, #dfe1e5, #bdbec1, #9b9c9e, #7b7b7c, #5c5c5c);
    top: 50%;
    clip-path: polygon(24% 5%, 50% 15%, 58% 21%, 61% 30%, 56% 38%, 44% 42%, 55% 45%, 71% 53%, 74% 59%, 69% 66%, 61% 70%, 55% 83%, 64% 98%, 59% 94%, 49% 85%, 51% 72%, 62% 59%, 51% 53%, 38% 50%, 24% 45%, 9% 41%, 42% 38%, 27% 46%, 18% 40%, 41% 34%, 47% 29%, 39% 20%);
    transform: rotate(26deg);
    z-index: 2;
    animation: float 8s ease-out infinite;
}
            .steam-2 {
    position: absolute;
    width: 2%;
    height: 2%;
    left: 46%;
    background-image: radial-gradient(circle, #dfe1e5, #bdbec1, #9b9c9e, #7b7b7c, #5c5c5c);
    top: 50%;
    border-radius: 50%;
    transform: rotate(26deg);
    z-index: 2;
    animation: float 7s ease-out infinite;
}
           .steam-3 {
    position: absolute;
    width: 1%;
    height: 1%;
    left: 36%;
    background-image: radial-gradient(circle, #dfe1e5, #bdbec1, #9b9c9e, #7b7b7c, #5c5c5c);
    top: 60%;
    border-radius: 50%;
    transform: rotate(26deg);
    z-index: 2;
    animation: float 6s ease-out infinite;
}
           .steam-4 {
    position: absolute;
    width: 2%;
    height: 2%;
    left: 43%;
    background-image: radial-gradient(circle, #dfe1e5, #bdbec1, #9b9c9e, #7b7b7c, #5c5c5c);
    top: 57%;
    border-radius: 50%;
    transform: rotate(26deg);
    z-index: 2;
    animation: float 5s ease-out infinite;
}
            @keyframes float {
                0% {
                    transform: translateY(0) translateX(0) scale(0.7) rotate(26deg);
                    opacity: 0.5;
                }
                50% {
                    transform: translateY(-25px) translateX(15) scale(0.7) rotate(26deg);
                    opacity: 0.1;
                }
                100% {
                    transform: translateY(-50px) translateX(35px) scale(1) rotate(26deg);
                    opacity: 0;
                }
            }
            .pot {
                position: absolute;
                bottom: 0%;
                left: 4%;
                border-top: 1.4em solid #555;
                border-left: 0.4em solid transparent;
                border-right: 0.4em solid transparent;
                height: 0;
                width: 1.6em;
            }
            .plant {
                width: 1.8em;
                height: 1.8em;
                background: #133a25;
                position: absolute;
                bottom: 8%;
                left: 4%;
                clip-path: polygon(
                    44% 5%,
                    39% 11%,
                    34% 15%,
                    28% 15%,
                    28% 18%,
                    26% 24%,
                    21% 26%,
                    21% 30%,
                    22% 36%,
                    17% 41%,
                    14% 42%,
                    15% 47%,
                    16% 53%,
                    10% 57%,
                    5% 57%,
                    9% 60%,
                    14% 64%,
                    9% 74%,
                    9% 69%,
                    12% 68%,
                    8% 77%,
                    10% 80%,
                    17% 82%,
                    26% 85%,
                    37% 87%,
                    46% 88%,
                    62% 85%,
                    75% 83%,
                    78% 78%,
                    84% 73%,
                    84% 66%,
                    81% 66%,
                    77% 63%,
                    79% 57%,
                    80% 52%,
                    76% 51%,
                    76% 50%,
                    78% 46%,
                    74% 40%,
                    68% 38%,
                    70% 32%,
                    75% 29%,
                    70% 24%,
                    65% 27%,
                    63% 23%,
                    67% 14%,
                    63% 11%,
                    57% 12%,
                    55% 8%,
                    52% 4%,
                    47% 0
                );
            }
            i.hairs {
                position: absolute;
                background: linear-gradient(#2c1225, #1c121a);
                height: 0.3em;
                width: 0.2em;
                clip-path: polygon(
                    38% 19%,
                    50% 14%,
                    66% 13%,
                    78% 15%,
                    79% 24%,
                    69% 31%,
                    60% 33%,
                    47% 38%,
                    40% 47%,
                    44% 53%,
                    60% 58%,
                    72% 66%,
                    71% 74%,
                    60% 83%,
                    35% 93%,
                    13% 97%,
                    7% 89%,
                    4% 81%,
                    12% 72%,
                    23% 79%,
                    36% 75%,
                    36% 66%,
                    24% 61%,
                    21% 50%,
                    19% 38%,
                    25% 26%
                );
                transform: rotate(45deg);
            }
            i.hairs:nth-child(1) {
                left: 30%;
            }
            i.hairs:nth-child(2) {
                left: 26%;
                top: -6%;
            }
            i.hairs:nth-child(3) {
                left: 16%;
                top: 5%;
            }
            i.hairs:nth-child(4) {
                left: 11%;
                top: 17%;
            }
            i.hairs:nth-child(5) {
                left: 41%;
                top: -1%;
            }
            i.hairs:nth-child(6) {
                left: 27%;
                top: 7%;
            }
            i.hairs:nth-child(7) {
                left: 53%;
                top: -9%;
                transform: rotate(71deg);
            }
            i.hairs:nth-child(8) {
                left: 64%;
                top: -5%;
                transform: rotate(81deg);
            }
            i.hairs:nth-child(9) {
                left: 80%;
                top: -1%;
                transform: rotate(104deg);
            }
            i.hairs:nth-child(10) {
                left: 88%;
                top: 10%;
                transform: rotate(101deg);
            }
            i.hairs:nth-child(11) {
                left: 73%;
                top: 4%;
                transform: rotate(71deg);
            }
            i.hairs:nth-child(12) {
                left: 56%;
                top: 2%;
                transform: rotate(71deg);
            }
            i.hairs:nth-child(13) {
                left: 59%;
                top: 10%;
                transform: rotate(48deg);
            }
            i.hairs:nth-child(14) {
                left: 74%;
                top: 12%;
                transform: rotate(74deg);
            }
            i.hairs:nth-child(15) {
                left: 93%;
                top: 21%;
                transform: rotate(327deg);
            }
            i.hairs:nth-child(16) {
                left: 83%;
                top: 19%;
                transform: rotate(318deg);
            }
            i.hairs:nth-child(17) {
                left: 89%;
                top: 43%;
                transform: rotate(171deg);
            }
            i.hairs:nth-child(18) {
                left: 72%;
                top: 23%;
                transform: rotate(48deg);
            }
            i.hairs:nth-child(19) {
                left: 82%;
                top: 36%;
                transform: rotate(48deg);
            }
            i.hairs:nth-child(20) {
                left: 85%;
                top: 54%;
                transform: rotate(8deg);
            }
            i.hairs:nth-child(21) {
                left: 74%;
                top: 66%;
                transform: rotate(27deg);
            }
            i.hairs:nth-child(22) {
                left: 79%;
                top: 50%;
                transform: rotate(27deg);
            }
            i.hairs:nth-child(23) {
                left: 69%;
                top: 54%;
                transform: rotate(48deg);
            }
            i.hairs:nth-child(24) {
                left: 56%;
                top: 45%;
                transform: rotate(48deg);
            }
            i.hairs:nth-child(25) {
                left: 67%;
                top: 36%;
                transform: rotate(48deg);
            }
            i.hairs:nth-child(26) {
                left: 64%;
                top: 73%;
                transform: rotate(196deg);
            }
            i.hairs:nth-child(27) {
                left: 58%;
                top: 77%;
                transform: rotate(48deg);
            }
            i.hairs:nth-child(28) {
                left: 49%;
                top: 79%;
                transform: rotate(19deg);
            }
            i.hairs:nth-child(29) {
                left: 37%;
                top: 84%;
                transform: rotate(232deg);
            }
            i.hairs:nth-child(30) {
                left: 29%;
                top: 85%;
                transform: rotate(236deg);
            }
            i.hairs:nth-child(31) {
                left: 16%;
                top: 86%;
                transform: rotate(101deg);
            }
            i.hairs:nth-child(32) {
                left: 3%;
                top: 77%;
                transform: rotate(134deg);
            }
            i.hairs:nth-child(33) {
                left: -2%;
                top: 61%;
                transform: rotate(125deg);
            }
            i.hairs:nth-child(34) {
                left: -5%;
                top: 40%;
                transform: rotate(349deg);
            }
            i.hairs:nth-child(35) {
                left: -8%;
                top: 26%;
                transform: rotate(169deg);
            }
            i.hairs:nth-child(36) {
                left: 1%;
                top: 10%;
                transform: rotate(22deg);
            }
            i.hairs:nth-child(37) {
                left: 13%;
                top: -2%;
                transform: rotate(52deg);
            }
            i.hairs:nth-child(38) {
                left: 38%;
                top: -8%;
                transform: rotate(67deg);
            }
            i.hairs:nth-child(39) {
                left: 43%;
                top: 8%;
                transform: rotate(22deg);
            }
            i.hairs:nth-child(40) {
                left: 62%;
                top: 20%;
                transform: rotate(22deg);
            }
            i.hairs:nth-child(41) {
                left: 53%;
                top: 23%;
                transform: rotate(22deg);
            }
            i.hairs:nth-child(42) {
                left: 46%;
                top: 20%;
                transform: rotate(22deg);
            }
            i.hairs:nth-child(43) {
                left: 33%;
                top: 14%;
                transform: rotate(22deg);
            }
            i.hairs:nth-child(44) {
                left: 59%;
                top: 34%;
                transform: rotate(53deg);
            }
            i.hairs:nth-child(45) {
                left: 43%;
                top: 44%;
                transform: rotate(239deg);
            }
            i.hairs:nth-child(46) {
                left: 48%;
                top: 36%;
                transform: rotate(22deg);
            }
            i.hairs:nth-child(47) {
                left: 61%;
                top: 50%;
                transform: rotate(41deg);
            }
            i.hairs:nth-child(48) {
                left: 37%;
                top: 37%;
                transform: rotate(54deg);
            }
            i.hairs:nth-child(49) {
                left: 24%;
                top: 46%;
                transform: rotate(22deg);
            }
            i.hairs:nth-child(50) {
                left: 43%;
                top: 57%;
                transform: rotate(22deg);
            }
            i.hairs:nth-child(51) {
                left: 32%;
                top: 64%;
                transform: rotate(22deg);
            }
            i.hairs:nth-child(52) {
                left: 50%;
                top: 60%;
                transform: rotate(22deg);
            }
            i.hairs:nth-child(53) {
                left: 59%;
                top: 65%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(53) {
                left: 59%;
                top: 65%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(54) {
                left: 38%;
                top: 74%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(55) {
                left: 11%;
                top: 51%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(56) {
                left: 32%;
                top: 28%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(57) {
                left: 27%;
                top: 78%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(58) {
                left: 19%;
                top: 72%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(59) {
                left: 6%;
                top: 43%;
                transform: rotate(94deg);
            }
            i.hairs:nth-child(60) {
                left: 21%;
                top: 38%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(61) {
                left: 9%;
                top: 32%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(62) {
                left: 21%;
                top: 62%;
                transform: rotate(59deg);
            }
            i.hairs:nth-child(63) {
                left: 33%;
                top: 50%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(64) {
                left: 9%;
                top: 65%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(65) {
                left: 21%;
                top: 20%;
                transform: rotate(45deg);
            }
            i.hairs:nth-child(66) {
                left: 72%;
                top: 42%;
                transform: rotate(45deg);
            }
#hero {
  max-width: 600px;
  height: auto;
}

#hero .hero-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 60px;
    font-weight: 700;
    line-height: 56px;
    color: #131313;
    margin-bottom: 16px;
    font-family: "Playwrite GB J", cursive;
}

#hero p {
    color: #000;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

#hero p span {
  color: #000;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #000;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 860px) {
    #hero h1 {
        font-size: 40px;
        line-height: 28px;
    }
    #hero p {
        font-size: 24px;
        font-weight: 400;
    }
  #hero h2 {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 30px;
  }
}
@media (max-width: 680px) {
       #hero h1 {
        font-size: 30px;
        margin-bottom: 8px;
    }
        #hero p {
        font-size: 12px;
        font-weight: 400;
    }
        .btn {
        padding: 10px;
        font-size: 10px;
    }
    #hero {
      width: 200px;
    }
     .board {
        right: 9%;
        top: 22%;
    }
}

#typewriter {
  border-right: 2px solid;
  padding-right: 3px;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
