html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

body.bg-auth {
  position: relative;
  min-height: 100vh;
}

body.bg-auth::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/data/Background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.welcome-highlight {
  position: relative;
  display: inline-block;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  transition: color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.welcome-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/data/Background.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.welcome-highlight:hover::before {
  opacity: 0.3;
}

.welcome-highlight > * {
  position: relative;
  z-index: 1;
}

.welcome-highlight:hover,
.welcome-highlight:hover .text-muted,
.welcome-highlight:hover #countdown {
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.welcome-highlight:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

/* Dropdown menu hover functionality */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-item.dropdown .dropdown-toggle::after {
  margin-left: 0.255em;
  vertical-align: 0.255em;
}
