html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  text-rendering: optimizeSpeed;
}

button {
  background-color: white;
  border-width: 2px;
  border-style: solid;
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
}

.button-change {

  transform: scale(1);

}

.button-change:hover {

  transform: scale(1.02);

}

a {
  text-decoration: none;
  color: black;
}

a:visited {
  text-decoration: none;
  color: black;
}

a:hover {
  text-decoration: underline;
}

.content {
    position: relative;

    width: 100%;
    max-width: 800px;
    margin-inline: auto;
    padding: clamp(10px, 3vw, 64px);

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.vault-content {
    position: relative;

    width: 100%;
    max-width: 800px;
    margin-inline: auto;
    padding: clamp(10px, 3vw, 64px);

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.rgb-hover {
  position: relative;
  display: inline-block;
  font-weight: inherit;
  color: black;
  cursor: pointer;
}

.rgb-hover::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    #f20202,
    #0fd901,
    #0084ff,
    #f20202
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  filter: blur(0.2px);
  transition: opacity 0.5s ease;
  animation: rgb-flow 4.5s linear infinite;
  pointer-events: none;
}

.rgb-hover:hover {
    transition: 0.75s ease-out;
    color: transparent;
}

.rgb-hover:hover::after {
  opacity: 1;
}

@keyframes rgb-flow {
  from { background-position: 0% 50%; }
  to   { background-position: 300% 50%; }
}


@font-face {
    font-family: LMBT;
    src: url(../fonts/LMBT.ttf);
}

@font-face {
    font-family: LMBT-L;
    src: url(../fonts/LMBT-L.ttf);
}

@font-face {
    font-family: LMBT-R;
    src: url(../fonts/LMBT-R.ttf);
}

::selection {
  background: #fcf53bcb; /* highlight background */
  color: #000;         /* text color */
}

.header-text {
    font-family: LMBT-R;
    font-weight: bold;
    font-size: 16px;
}

p {
    font-family: LMBT-R;
    font-size: 16px;
    letter-spacing: 0px;
}

.normal-text {
    font-family: LMBT-R;
    font-size: 16px;
    letter-spacing: 0px;
}



