* { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Phudu', sans-serif;
    background: #19191d;
    height: 100vh;
    display: flex;
    overflow: hidden;
    flex-direction: column;
  }
  .textCont{
        display: flex;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
    padding-bottom: 320px;
  }
  .textureBg{
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    position: absolute;
    object-fit: cover;
    background-image: url(asets/texture.png);
    background-position: center;
background-size: cover;
mix-blend-mode: multiply;
z-index: -1;
  }
  h2{
    font-size: 110px;
       color: #fcfcfc;
           /* -webkit-text-stroke-width: 1px; */
    /* -webkit-text-stroke-color: #000; */
    text-shadow: 1px 7px 1px #000000;

  }
  h1{
    font-size: 250px;
    color: #fcfcfc;
    line-height: 120px;
        /* -webkit-text-stroke-width: 5px; */
    /* -webkit-text-stroke-color: #000; */
    text-shadow: 1px 7px 1px #000000;


  }
  model-viewer {
    width: 100%;
    flex: 1;
    background-color: transparent;
    --progress-bar-color: transparent ;
    z-index: 2;
    bottom: -50px;
  }

  #controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    /* background: #111; */
    flex-wrap: wrap;
    z-index: 2;
  }

  .label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }

  .colorSwatch {
    width: 26px; height: 26px;
    /* border-radius: 50%; */
    cursor: pointer;
    transition: transform 0.15s;
    outline-offset: 3px;
  }
  .colorSwatch:hover {
     transform: scale(1.1); 
    }
  .colorSwatch.active { 
    outline: 2px solid rgba(255,255,255,0.6); 
    }
  .colorSwatch.orig { 
    background: #e8820a; 
}
  .colorSwatch.pink {
    background: #ff4d79; 
}

  .sep {
    width: 1px; height: 24px;
    background: rgba(255,255,255,0.1);
  }

  button {
    font-family: 'Phudu', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    /* border-radius: 20px; */
    padding: 6px 16px;
    cursor: pointer;
    transition: all 0.2s;
  }
  button:hover { 
    color: #fff; background: rgba(255,255,255,0.12);
 }
  button.active {
    color: #fff;
    background: rgba(255,77,121,0.2);
    border-color: rgba(255,77,121,0.5);
}
.moveIn{
    transform: translateY(100px);
    animation: move-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
@keyframes move-in{
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes scale-in-center2 {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}
.scaleIn {
  transform-origin: center;
	animation: scale-in-center2 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.scaleIn2 {
  transform-origin: center;
	animation: scale-in-center2 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940) 500ms both;
}