* {
  box-sizing: border-box;
}
h1 {
  font-weight: normal;

}
a {
  text-decoration: none;
  font-weight: bold;
  background: linear-gradient(
    135deg,
    rgba(43, 171, 217, 1) 0%,
    rgba(0, 130, 200, 1) 100%
  );
  -webkit-background-clip: text;
  color: transparent;
}
html,
body {
  background: linear-gradient(
    135deg,
    rgba(6, 214, 160, 1) 0%,
    rgba(0, 245, 212, 1) 100%
  );
  font-family: 'Roboto', sans-serif;
}
.card {
  position: absolute;
  background-color: #f8f8f8;
  border-radius: 1.5em;
  min-width: 400px;
  max-width: 1170px;
  padding: 2.6em 3.8em;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1), 0 32px 32px rgba(0, 0, 0, 0.15),
    0 64px 64px rgba(0, 0, 0, 0.15);
}
.note::after {
  content: "";
  width: 25em;
  height: 2px;
  border-radius: 999px;
  background-color: #afafaf;
  background: linear-gradient(
    135deg,
    rgba(6, 214, 160, 1) 0%,
    rgba(0, 245, 212, 1) 100%
  );
  position: absolute;
  top: -1.8em;
  left: 0;
}
.note {
  font-size: 0.8em;
  color: #8a8a8a;
  position: relative;
}
.credits{
    font-size: 0.8em;
    color: #8a8a8a;
    position: relative;
    top: 2.3em;
    text-align: center;
}
.text {
    display: inline;
    position: absolute;
}
/* Scroller styling */
.scroller {
  display: inline-block;
  height: 1.2em;
  line-height: 1.2em;
  position: relative;
  overflow: hidden;
  width: 10em;
  margin-left: 2.5em;
}
.scroller > span {
  position: absolute;
  top: -0.075em;
  animation: slide 5s infinite;
  font-weight: bold;
}
@keyframes slide {
  0% {
    top: -0.075em;
  }
  25% {
    top: -1.275em;
  }
  50% {
    top: -2.475em;
  }
  75% {
    top: -3.675em;
  }
}
