body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

@font-face {
  font-family: "Inter-Bold";
  src: url(../media/Inter-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Uncut-Sans";
  src: url(../media/Uncut-Sans-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "Fragment Mono";
  src: url(../media/FragmentMono-Regular.ttf) format("truetype");
}


h1 {
  font-size: 3rem !important;
  font-family: Inter-Bold !important;
  font-weight: bold !important;
}

h2 {
  font-size: 2rem !important;
  font-weight: bold !important;
}

h3 {
  font-size: 1.5rem !important;
  font-family: Uncut-Sans !important;
  font-weight: bold !important;
}

h4 {
  font-size: 1rem !important;
  font-family: Uncut-Sans !important;
  font-weight: bold !important;
}

h5 {
  font-size: 0.83rem !important;
  font-weight: bold !important;
}

h6 {
  font-size: 0.67rem !important;
  font-weight: bold !important;
}

@media screen and (max-width: 768px) {


  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1rem !important;
  }

  h4,
  p {
    font-size: .83rem !important;
  }

  h5 {
    font-size: 0.67rem !important;
  }

  h6 {
    font-size: 0.5rem !important;
  }
}

p {
  font-family: "Fragment Mono" !important;
}

a {
  font-family: Uncut-Sans !important;
}

svg {
  display: inline-block !important;
}

#goldfinder-app {
  height: fit-content;
}

.button-anchor {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: .4rem 1rem;
  border-radius: 5rem;
  background: transparent;
  color: black;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* background-image: linear-gradient(110.3deg, rgb(85 73 109) 4.3%, rgb(50 12 75) 96.7%); */
  background-image: linear-gradient(to right, #fff59c, #dd9625);
  overflow: hidden;
  z-index: 1;
}

.button-anchor.purple-gradient {
  background-image: linear-gradient(to right, #fff59c, #dd9625);
}

.button-anchor:hover {
  cursor: pointer;
}

/* .button-anchor::before {
    position: absolute;
    content: "";
    inset: 0;
    background-image: linear-gradient(to right, purple, blue);
    z-index: -1;
    opacity: 0;
    transition: opacity .3s;
} */

.button-anchor.purple-gradient::before {
  /* background-image: radial-gradient(circle 300px at 8.2% 13.8%, #6119ab 0%, #bf97bf 90%); */
}

.button-anchor:hover::before {
  opacity: 1;
}

.text-anchor {
  position: relative;
  color: white;
  text-decoration: none;
  overflow: hidden;
  transition: all .3s;
}

.text-anchor:hover {
  cursor: pointer;
  opacity: .8;
}

@keyframes translate-loop-animation {
  33% {
    animation-timing-function: steps(1, end);
    transform: translateX(100%)
  }

  34% {
    transform: translateX(-70%)
  }

  80% {
    transform: translateX(0%)
  }
}

.text-anchor::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  /* background-color: red; */
  background-image: linear-gradient(to right, #fff, rgba(0, 0, 0, 0) 85%);

  /* animation-iteration-count: infinite; */
  transform: translateX(0%)
}

.text-anchor:hover::before {
  animation-name: translate-loop-animation;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.fade-gradient-underline::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  /* background-color: red; */
  background-image: linear-gradient(to right, #fff, rgba(0, 0, 0, 0) 85%);

  /* animation-iteration-count: infinite; */
  transform: translateX(0%)
}

.fade-gradient-underline:hover::before {
  animation-name: translate-loop-animation;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}



.text-grey-gradient {
  color: transparent;
  background: #FFFFFF;
  background: linear-gradient(to right, #D1D1D1 0%, #FFFFFF 35%, #D1D1D1 100%);
  /* background: radial-gradient(circle, #fff, rgba(255, 255, 255, .35)); */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.light-border {
  border: 1px solid rgba(255, 255, 255, .3);
}


.container-gray-gradient-top {
  background-image: linear-gradient(to top, #232323, rgba(0, 0, 0, 0))
}

.container-gray-gradient-bottom {
  /*background-image: linear-gradient(to bottom, #232323, rgba(0, 0, 0, 0))*/
  /*background-image: linear-gradient(to top, #232323, rgba(0, 0, 0, 0));*/
  background-image: linear-gradient(to top, #0d0c0c, rgba(0, 0, 0, 0));
}

.drop-shadow-center-black {
  filter: drop-shadow(0px 0px 10px black);
}