body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #ffffff;
}

.loader {
  position: relative;
  width: 100px;
  height: 100px;
}

.progress {
  width: 75%;
  height: 75%;
  border-radius: 100%;
  border: 5px solid #b72a14;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}

.loader img {
  width: 70%; /* Adjust size as needed */
  height: 70%;
  position: absolute; /* Change to absolute to center it */
  top: 25%;
  left: 25%;
  transform: translate(-25%, -25%); /* Centering */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
