/* Reset */
* {
/*    outline: 2px solid red;   /*  Hack to see content outside of page */
}

.hero {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
}

.hero-text {
  position: inline;
/*  top: 50%; */
/*   transform: translateY(-50%); */
  font-size: 60px; /* Directly controls height of Typed Hero Text  */
}

.text, .title-text {
  display: inline-block;
  margin: 0;
  line-height: 1;
  font-size: 1.35em;
  color: #ffffff;
}

/* Font for Hero Text */
.font-cabin {
  font-family: "Cabin", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  color: #ffffff;
}

.title {
/*  text-transform: uppercase; /* Chnage to Uppercase Leters */
  letter-spacing: 20px;      /* Adding spaces between letters*/
  font-family: "Cabin", sans-serif;
  display: grid;
  justify-content: left; /* Left Justify */
  align-items: left;     /* Left Justify */
  font-size: 50px;
/*  margin: 10px 0px 10px 5px */
}

.title-sub {
  font-family: "Cabin", sans-serif;
  display: relative;
  justify-content: left; /* Left Justify */
  align-items: left;     /* Left Justify */
  font-size: 22px;
}

/*
 * Semi-Transparent Fade (Ghost Button)
 */
.ghost-button-semi-transparent {
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  vertical-align: middle;
  position: inline;
  top: 25px;
  display: inline-block;
  width: 150px;
  padding: 8px;
  color: #fff;
  border: 2px solid;
  text-align: center;
  outline: none;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
  transition: background-color 0.2s ease-out,
              border-color 0.2s ease-out;
}
.ghost-button-semi-transparent:hover,
.ghost-button-semi-transparent:active {
  background-color: #fff; /* fallback */
  background-color: rgba(255, 255, 255, 0.4);
  border-color: #fff; /* fallback */
  border-color: rgba(255, 255, 255, 0.4);
  -webkit-transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
  transition: background-color 0.3s ease-in,
              border-color 0.3s ease-in;
}



/*
Source - https://stackoverflow.com/a
Posted by Timothy, modified by community. See post 'Timeline' for change history
Retrieved 2026-01-26, License - CC BY-SA 3.0
*/

#textual {
    opacity: 0.0;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
#hover {
    cursor: pointer;
}
#hover:hover + #textual {
    opacity: 1.0;
    backdrop-filter: blur(2px) saturate(90%) brightness(90%); /*  Blur background to enhance text */
}

/* Terms of Usage  */

.terms_wrapper {
    background-color: #1F1F1F;
}

.terms_content {
    padding: 20px;
    color: #FFF;
}

/* Font for Hero Text */
.terms-cabin {
  font-family: "Cabin", sans-serif;
  text-align: left;
  color: #CCCCCC;
}

.terms-back-buttom {
padding: 0px 30px 50px 0px;
width:90%; 
height:50px; 
text-align: right; 
}


/*
Position Logo and TM etc
*/

/* Google Font - Icons */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 100,
  'GRAD' 0,
  'opsz' 40;
  vertical-align: text-bottom;
}

.logo {
    font-family: "Cabin", sans-serif;
    font-size: 1.7rem;
    font-weight: none;
    color: #FFF;
    text-decoration: none;
    position: absolute; top: 20px; left: 20px; font-size: 25px;
}

.tm {
  color: #FFF;
  position: relative; top: -5px; font-size: 10px;
}


/* arrow bounce */
.arrow_bounce {
 -moz-animation: bounce 5s infinite;
  -webkit-animation: bounce 5s infinite;
  animation: bounce 5s infinite;
}
@-moz-keyframes bounce {
   0%, 15%, 25%, 80%, 100%  {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  10% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  20% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
   0%, 15%, 25%, 80%, 100%  {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  20% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 15%, 25%, 80%, 100% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-30px);
  }
  20% {
    transform: translateY(-15px);
  }
}


