/**
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: Richard Williams
* License: Proprietary
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {

}

/* Common logo style */
.logo {
  display: inline-block;
  font-size: 2.2em;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-100vw);
}

/* Animation keyframes */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* "Nexxus" animation */
.firstName {
  animation: slideInLeft 2.5s ease-out forwards;
  background-color: #83caff;
  color: #000;
  padding: 0.1em 0.3em;
  margin-right: 0.2em;
}

/* "Digital" animation, slightly delayed */
.lastName {
  animation: slideInLeft 3.2s ease-out forwards;
  animation-delay: 0.5s;
  background-color: transparent;
  color: #83caff;
}
