
body {
 background-image: url('background.gif');
 background-repeat: repeat; 
 background-size: cover; 
 background-attachment: fixed; 
 font-family: "DynaPuff" , system-ui; 
} 

.container {
  max-width: 1200px;
  max-height: 1200px;
  width: 800px; 
  height: 1200px; 
  margin: 20px auto;
  background-image: url('bizzies website background.png');
  border-radius: 8px;
  
}

.websiteborder {
  
  --borderwidth: 60px; 
border-image-source: url('bizzies website border.png');
border-image-repeat: round; 
border-image-outset: 1; 
} 

.anigradient {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(
        90deg,
        #ffe150,
        #b45aff,
        #ff007b,
        #0073ff,
        #ffe150
    );
    background-size: 300% 100%; 
    color: transparent !important; 
    -webkit-background-clip: text;
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    animation: gradientAnimation 3s linear infinite; 
}

@keyframes gradientAnimation { 
    0% {
        background-position: 0% 50%; 
    } 
    100% {
        background-position: 100% 50%;
    }
}
