.logo {
  z-index: 10;
  color: black;
  text-align: center;
  width: 160px;
  height: 160px;
  margin-top: 10px;
  border-radius: 200px;
  background-color: #FFE2ED;
}

.logo img {
  margin-top: 15px;
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading-overlay {
  background-color: #FFB5DB;
  z-index: 10000;
}

.loading-logo {
  width: 200px;
  opacity: 1;
  animation: fade 1.5s linear infinite;
}

@keyframes fade {
  0%,
  100% {
    opacity: 1
  }
  50% {
    opacity: 0
  }
}
