 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }


 .text-railway {
    font-family: "Raleway", sans-serif;
 }

 .outline-text {
    color: transparent;
    -webkit-text-stroke: 3px #F7A81B;
    line-height: 1.2;
 }

 @keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spin-slow {
  animation: spin-slow 20s linear infinite;
}