<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
  font-family: 'Montserrat', sans-serif;
}
#icons.section {
  padding: 120px 0;
}
.section .twoins-icon {
  display: block;
  max-width: 100px;
  margin: 0 auto;
}
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  text-align: center;
}
.marquee span {
  display: inline-block;
  padding-left: 200px;
  animation: marquee 15s linear infinite;
  text-transform: uppercase;
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  color: #6768b0;
}
@keyframes marquee {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}</pre></body></html>