  .menu li::before {
        content: ">";
        color: #57adee;
      }

      .menu li a {
        color: white;
        text-decoration: none;
      }

      .menu li a:hover{
        color: #55acee;
      }

      .bg-color {
        background-color: #001226;
        position: relative;
        overflow: hidden;
      }
      .bg-color::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/footer-bg.png) center/cover no-repeat;
        opacity: .2;
        filter: grayscale(100%) contrast(140%) brightness(90%); 
        animation: floatBG 4s ease-in-out infinite alternate;
        z-index: 1;
      }
      .bg-color > * {
        position: relative;
        z-index: 2;
      }

      /* .bg-img{
       background-image: url("./img/steptodown.com795401.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: overlay; 
        width: 100%;
        height: 100%;
        position: absolute;
        opacity: 0.01;
        display: flex;
        align-items: center ;
        justify-content: center;
        font-size: 30rem;
        animation: floatBG 3s ease-in-out infinite alternate;
      } */

      .copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        /* background-color: #1d242d; */
        /* border: 1 solid white; */
        outline: 1px solid white;
        background-color: transparent;
        padding: 1rem;
      }

      /* LOOP ANIMATION */
      @keyframes floatBG {
        0% {
          transform: translate(-15px, -5px);
        }
        100% {
          transform: translate(15px, 3px);
        }
      }

      .title {
        color: #57adee;
        text-transform: uppercase;
        /* font-size: 20px; */
      }

      .textsize{
        font-size: 14px;
      }