/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background and text setup */
body {
  background-color: #000;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
}

/* Logo Container */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Fist Shape */
.fist {
  position: relative;
  width: 100px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Palm of the Fist */
.palm {
  width: 60px;
  height: 80px;
  background-color: #00FFFF; /* Cyan */
  border-radius: 5px;
}

/* Thumb */
.thumb {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 40px;
  background-color: #39FF14; /* Neon Green */
  transform: rotate(-45deg);
}

/* Fingers */
.finger {
  width: 20px;
  height: 40px;
  background-color: #39FF14; /* Neon Green */
  border-radius: 5px;
}

.finger1 {
  margin-top: -30px;
}

.finger2 {
  margin-top: -50px;
}

.finger3 {
  margin-top: -70px;
}

.finger4 {
  margin-top: -90px;
}

/* Text Styles */
.text {
  font-size: 36px;
  font-weight: bold;
  color: #FF1493; /* Neon Pink */
  display: flex;
  align-items: center;
}

.tech {
  color: #39FF14; /* Neon Green */
  margin-right: 10px;
}

.liberation {
  color: #00FFFF; /* Cyan */
}
