body {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    140deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(235, 235, 235, 1) 100%
  );
  background: -webkit-linear-gradient(
    140deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(235, 235, 235, 1) 100%
  );
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(235, 235, 235, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ebebeb",GradientType=1);
}

.logo-container {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-container img {
  width: 80%;
  height: auto;
}

.whatsapp-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-fab img {
  width: 60px;
  height: 60px;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .whatsapp-fab {
    bottom: 85px;
  }
}
