@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Roboto+Condensed:ital,wght@1,400;1,700&display=swap');
/* :root{
    --black: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%);
    --blue: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
} */

html,
body,
h1,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', sans-serif !important;
}

h2 {
  font-family: 'Lobster', cursive !important;
}

body {
  background: rgb(2, 0, 36);
  background: -moz-radial-gradient(circle, rgba(2, 0, 36, 1) 0%, rgba(52, 87, 94, 1) 100%, rgba(0, 0, 0, 1) 100%);
  background: -webkit-radial-gradient(circle, rgba(2, 0, 36, 1) 0%, rgba(52, 87, 94, 1) 100%, rgba(0, 0, 0, 1) 100%);
  background: radial-gradient(circle, rgba(2, 0, 36, 1) 0%, rgba(52, 87, 94, 1) 100%, rgba(0, 0, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024", endColorstr="#000000", GradientType=1);
}

.black-button {
  background-image: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%) !important;
}

.gooish-color {
  color: #e48853;
}

.gooish-color:hover {
  color: #fa5c00;
}

.gooish-back {
  background-color: #e48853;
}

.gooish-back:hover {
  background-color: #fa5c00;
}

.bttn {
  flex: 1 1 auto;
  margin: 10px;
  padding: 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: black;
  /* text-shadow: 0px 0px 10px rgba(0,0,0,0.2);*/
  box-shadow: 0 0 20px black;
  border-radius: 10px;
}

.bttn:hover {
  background-position: right center;
  /* change the direction of the change here */
}


h2,
.typing {
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation:
    typing 3.5s steps(100, end),
    blink-caret 3.5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {

  from,
  to {
    border-color: transparent
  }
}

.cursor {
  display: inline;
  background-color: #e48853;
  width: 2px;
  margin-left: 2px;
  animation: blink 1s infinite;
}

.cursor.typing {
  animation: none;
}

@keyframes blink {
  0% {
    background: #e48853;
  }

  49% {
    background: #e48853;
  }

  50% {
    background: transparent;
  }

  99% {
    background: transparent;
  }

  100% {
    background: #e48853;
  }
}


/* scrolling text */
#scroll {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}

.marquee-parent {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 30px;
}
.marquee-child {
  display: block;
  width: 147px;
  /* width of your text div */
  height: 30px;
  /* height of your text div */
  position: absolute;
  animation: marquee 5s linear infinite; /* change 5s value to your desired speed */
}
.marquee-child:hover {
  animation-play-state: paused;
  cursor: pointer;
}
@keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: -147px /* same as your text width */
  }
}

@media only screen and (min-width: 600px) {
  #scroll{
    width:20%;
  }
}