body {
    font-family: 'Comfortaa', sans-serif;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(176,176,255,1) 42%, rgba(0,161,255,1) 100%)
  }

.noHover{
    pointer-events: none;
}

.white {
  color: white !important;
  background-color: #04AA6D;
}

.min-width-10rem {
  min-width: 100rem;
}

.border-red {
  border: 10px !important;
  border-color: red !important;
}

.indicator-style {
  pointer-events: none;
  position: Fixed;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  z-index: 999; /*make sure it's on top of everything*/
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /*semi-transparent black overlay*/
  z-index: 990;
  transition: 0.8s; /*make sure it's on top of everything*/
}

.redText {
  color: red;
}

/* Page layout: ensure footer sticks to the bottom of the viewport */
html, body {
  height: 100%;
}

/* Apply the page layout only when the body has the `page-flex` class to ensure high specificity
   (this avoids accidental overrides when styles are loaded in different orders). */
body.page-flex {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-flex main#main-content {
  flex: 1 0 auto;
}

.page-flex footer[role="contentinfo"] {
  flex-shrink: 0;
}
