#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(231, 235, 236);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.ms-login-button {
  display: inline-block;
  background-color: #3498db; /* Microsoft blue */
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.ms-login-button:hover {
  background-color: #005a9e; /* A darker shade of blue for hover effect */
  cursor: pointer;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa;
  padding: 5px 0;
  text-align: center;
}

.klabu-description {
  color: white; /* Replace with a color that matches the logo */
  font-family: Arial, sans-serif; /* Replace 'YourFont' with the chosen font */
  opacity: 0.5;
  text-align: center;
  padding-top: 15px;
}

  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

  .mail{
    color: #3498db;
    text-decoration: none; /* no underline */
  }