body {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  height: 100vh;
  margin: 0;
}

.blade_container {
  width: 180px;
  height: 180px;
  margin: auto;
  margin-top: 50px;
}

.rotate {
  animation: blade 1s linear infinite;
}

@keyframes blade {
  0% {
    transform: rotate(360deg);
  }
}

.rode {
  width: 15px;
  height: 150px;
  background-color: black;
  margin: auto;
  margin-top: 0px;
}
.stand {
  width: 100px;
  height: 15px;
  background-color: black;
  margin: auto;
}

.front {
  will-change: transform;
  transition: transform 250ms;
}

.pushable:hover .front {
  transform: translateY(-6px);
}

.pushable:active .front {
  transform: translateY(-2px);
}

.pushable {
  background: hsl(340deg 100% 32%);
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
}
.front {
  display: block;
  padding: 12px 42px;
  border-radius: 50%;
  width: 75px;
  height: 125px;
  background: hsl(345deg 100% 47%);
  color: white;
  transform: translateY(-4px);
}

.pushable:focus:not(:focus-visible) {
  outline: none;
}

.btn {
  position: absolute;
  bottom: 50px;
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #f5f5f5;
  background-color: black;
  padding: 10px 0px;
  font-size: min(2vw, 15px);
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
