
.card {
  position: fixed;
  bottom: 2px;
  left: 50%;
  display: flex;
  background-color:#0e0d0d93;;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.177);
  transition: all 0.5s ease-in-out;
  transform: translateX(-50%); 
}



.card button {
  font-size: 34px;
  background-color: transparent;
  width: 50px;
  padding: 7px;
  height: 50px;
  border-radius: 100%;
  transition: all 0.2s ease-in;
  border: 0;
  cursor: pointer;
}

.card button:hover {
  background-color: #3b82f6;
  margin-bottom: 2%;
}

