   @font-face {
    font-family: "VeniceClassic";
    src: url(fonts/comercial_and_personal/VeniceClassic.ttf);
  }
  
  
  @font-face {
    font-family: "Nunito bold";
    src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
    font-weight: bold;
  }
  
  @font-face {
    font-family: "Nunito";
    src: url('https://sadhost.neocities.org/fonts/Nunito.ttf');
  }
  
  #body {
    font-family: VeniceClassic;
    margin: 0;
    background-color: #08031A;
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 65px;
    color: #4b336b;
  }

  #h1 {
    text-align: center;
    font-weight: bold;
  }
  #p {
    text-align: center;
  }

  
  #h2 {
    color: white;
    text-align: left;
    font-weight: bold;
  }
  
  #h3 {
    color: white;
    text-align: right;
  }
  #container {
    max-width: 1000px;
    margin: 0 auto;
    /* this centers the entire page */
  }
  #container a {
    /* all page links except navigation */
    color: #ED64F5;
    font-weight: bold;
  }
  #header {
    width: 100%;
    height: 150px;
    text-align: center;
    /* this is only for a background image! */
    /* if you want to put images IN the header, you can add them directly to the <div id="header"></div> element! */
    background-image: url("graphics/placeholder_big.png");
    background-size: 100%;
    background-position: center;
  }

  #marqhome {
   background-color: #241445;
   padding: 0px;
  }
  
  #flex {
    display: flex;
  }
/* this colors BOTH sidebars. if you want to style them separately, create styles for #leftSidebar and #rightSidebar */
  aside {
    background-color: #fdcaff;
    width: 200px;
    padding: 15px;
    font-size: smaller;
    /* this makes the sidebar text slightly smaller */
    border: 3px dashed #ffffff;
  }
            /* this is the color of the main content area,
    between the sidebars! */
  main {
    flex: 1;
    padding: 20px;
    order: 2;
  }
  main2 {
    flex: 0.5;
    padding: 10px;
    order: 3;
  }
  mainL {
    flex: 0.5;
    padding: 10px;
    order: 1;
  }
/* if you're using both sidebars, the "order" value tells the CSS the order in which to display them. left sidebar is 1, content is 2, and right sidebar is 3! */

  #leftSidebar {
    order: 1;
  }

  #rightSidebar {
    order: 4;
  }
  footer {
    background-color: #13092D;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
  }
 

  h1 {
    font-size: 25px;
  }

  strong {
    /* this styles bold text */
    color: #ED64F5;
  }

/* box as seen within the sidebars */
  .box {
    background-color: #bea3ff;
    border: 3px solid #ffffff;
    padding: 10px;
    margin: 15;
  }
  
  .box2 {
    display: inline-block;
    background-color: #bea3ff;
    border: 3px solid #ffffff;
    padding: 10px;
    margin: 15;
  }
  
  .grid-container {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    width:300px;
    margin:auto;
  }
  
  .scrollBox {
    background-color: #bea3ff;
    border: 3px solid #ffffff;
    padding: 10px;
    margin: 15;
    overflow: scroll;
  }
  
  .siteUpdates div {
    background-color: #ffffff;
    border: 3px solid #000000;
    width: 33%;
    display: inline-block;
    padding: 10px;
    margin: 15;
    overflow: scroll;
  }
  
  .polaroid {
    width: 80%;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  #topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #13092D;
  }
  

  #rotate {
  overflow: hidden;
  display: inline-block;
   
  }
   
  #rotate img {
  transition: transform .5s;
  }
   
  #rotate:hover img {
  transform: scale(1.25) rotate(10deg);
  transform-origin: 50% 50%;
  filter: blur(.5px);
   
  }
  
  

  .pinkwave {
    font-size: 2em;
    font-weight: bold;
    font-family: arial;
    color: transparent;
    background: url("https://files.catbox.moe/db8ne8.png") repeat-x #fff;
    background-size: auto;
    background-clip: border-box;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 0;
    background-position-y: 2em;
    -webkit-transition: background-position-y 0.6s ease;
    transition: background-position-y 0.6s ease;
    -webkit-animation: waveAnimation 4s infinite linear;
    animation: waveAnimation 4s infinite linear;
  filter: drop-shadow(1px 1px white) drop-shadow(-1px 1px white) drop-shadow(1px -1px white) drop-shadow(-1px -1px white) drop-shadow(1px 1px black) drop-shadow(-1px 1px black) drop-shadow(1px -1px black) drop-shadow(-1px -1px black) ;
  background-position-x: 0;
    background-position-y: 0;
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
   
  @keyframes waveAnimation{
    from {
      background-position-x: 0%;
    }
    to {
      background-position-x: 200%;
    }
  }
 
<span class="pinkwave">WAVE</span>

 