.text-container {
  background: white;
  width: 375px;
  margin: auto;

}
a {
 text-decoration: underline;
 text-decoration-style: wavy;
}
body {
  background: #F7EBF5;
  background-image: url('https://i.postimg.cc/SKM3hT2J/IMG_9208.jpg');
}
<html>
<head>
<style>
.sliding-text-container {
  width: 100%;
  overflow: hidden; /* Hides overflowing text */
  white-space: nowrap; /* Prevents text from wrapping */
}
.sliding-text {
  display: inline-block; /* Allows animation on text */
  animation: slideIn 10s linear infinite; /* Animation definition */
}
@keyframes slideIn {
    0% { transform: translateX(100%); } /* Start off-screen right */
  100% { transform: translateX(-100%); } /* End off-screen left */
}
strong {
  color: black;
  font-weight: 700 !important;

}
*, a {
 color: var(--color); 
    font-family: "kiddos";
}

:root[data-theme="light"] {
    --color: #F5CBE0;
    --background: white;
}
@font-face {
src: url(https://files.catbox.moe/vyd4m6.ttf);
font-family: out;
}

@font-face {
src: url(https://files.catbox.moe/goapkb.ttf);
}

@font-face {
src: url(https://files.catbox.moe/goapkb.ttf);
font-family: kiddos;
}

.button, .button:hover {
 background: none;
  color: var(--color);