body{
    text-align: center;
    background-image: url('https://files.catbox.moe/1ufvl0.gif');
    backdrop-filter: blur(10);
    background-size: 100%;
    background-position-y: center;
    background-position-x: center;
    background-repeat: no-repeat;
    color:white;
    
}
section {
    background-color: #404040;
    background-size: contain;
}
img {
    border: .25in solid darkgoldenrod;
    height: ;
    width: auto;
}
marquee {
  font-size:6rem;
  color:red;
}

.container {
  overflow: hidden;
  white-space: nowrap;
  color:red;
  background-color: black;
}

.scrolling {
  animation: marquee 2s linear infinite;
  display: inline-block;
  padding-right: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to { 
    transform: translateX(-100%);
  }
}