


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #1c1c1c;
}

.wrapper {
  width: 200px;
  height: 200px;
  display: flex;

  justify-content: center;
  align-items: center;
}

.line2 {
  height: 100px;
  margin: 0 5px;
  width: 1px;
  background: #f200ff;
  transform-origin: bottom;
  animation: dance2 500ms ease infinite;
}

.line2:nth-child(2) {
  animation-delay: 0.1s;
}
.line2:nth-child(3) {
  animation-delay: 0.2s;
}
.line2:nth-child(4) {
  animation-delay: 0.3s;
}
.line2:nth-child(5) {
  animation-delay: 0.4s;
}
.line2:nth-child(6) {
  animation-delay: 0.5s;
}
.line2:nth-child(7) {
  animation-delay: 0.6s;
}
.line2:nth-child(8) {
  animation-delay: 0.7s;
}
.line2:nth-child(9) {
  animation-delay: 0.8s;
}
.line2:nth-child(10) {
  animation-delay: 0.9s;
}
.line2:nth-child(11) {
  animation-delay: 1s;
}
.line2:nth-child(12) {
  animation-delay: 1.1s;
}
.line2:nth-child(13) {
  animation-delay: 1.2s;
}
.line2:nth-child(14) {
  animation-delay: 1.3s;
}
.line2:nth-child(15) {
  animation-delay: 1.4s;
}

@keyframes dance2 {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.3);
  }
}






* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  min-height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav {
  min-width: 70px;
  width: 100%;
}

.nav--list {
  width: 100%;
  height: 10px;
  margin: auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item,
.item--wrapper {
  height: 50px;
  width: 120px;
  margin: 1px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transform-origin: top center;
  transform: translateY(0px) rotateX(0deg);
  transition: transform 300ms linear;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.item--wrapper::before,
.item--wrapper::after {
  content: attr(data-item);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 1px 1px #666;
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(0px) rotateX(0deg);
  transform-style: preserve-3d;
  transition: transform 300ms linear;
  background: #00524e;
}

.item--wrapper::before {
  background: #000;
  color: #f200ff;
  transform-origin: bottom center;
  transform: translateY(-50px) rotateX(-90deg);
}

.item:hover .item--wrapper {
  transform: translateY(50px) rotateX(90deg);
}









    body {
        background-color:#1c1c1c;
        color: white;
        font-family: Verdana;
    }
    
    a {
      color: yellow;
    }
    
    
  p.small {
  line-height: 2.9;
}

p.big {
  line-height: 4.3;
}