@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;600&family=Poppins:wght@100;500;600;800;900&family=Lobster+Two:ital,wght@0,400;0,700;1,400&display=swap');
/* GLOBAL CONFIG RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;

}
select:focus, input:focus, button:focus {
  outline: none;
}
/* -------- BODY DISPLAY --------- */
body {
  background-color: #222;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;   
}
/* -------- TYPE SELECTORS --------- */
/* -------- CLASS --------- */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .box {
  transform-style: preserve-3d;
  animation: animate 15s linear infinite forwards;
  
}
.container .box span {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5) 90%, transparent);
  text-transform: uppercase;
  line-height: 1em;
  position: absolute;
  color: #ffffff;
  font-size: 1.75em;
  white-space: nowrap;
  font-weight: bold;
  padding: 0px 0px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%)  rotateX(calc(var(--i) * 15deg)) translateZ(125px);
  
}
.container .box span i {
  font-style: initial;
}
.container .box span i:nth-child(1) {
  color: #ffffff;
}
.container .box span i:nth-child(2) {
  color: #ffffff;
}
 @keyframes animate {
    
  0% {
      transform:  scale(4) rotateX(0deg)  rotateZ(0deg);
  }
  100% {
      transform:  scale(4) rotateX(-360deg)  rotateZ(0deg);
  }
  
} 
body {
    background-image: url('https://everythingis.neocities.org/everythinngisbg.png');
}
