body { background-image: linear-gradient(45deg, #6f31cc 8.33%, #b445e8 8.33%, #b445e8 50%, #6f31cc 50%, #6f31cc 58.33%, #b445e8 58.33%, #b445e8 100%);
    background-size: 8.49px 8.49px;
    cursor: url("Fries.cur"), no-drop;
    height: 100%;
    }
    
    
    ::-webkit-scrollbar {
        width: 1px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: black;
        
    }

h1 {   font-family: westsac, sans-serif;
    font-style: normal;
    font-size: 30px;
letter-spacing: 10px;
margin-bottom: -10px;}

.letter {
    display: inline-block;
    animation: wiggle 0.5s linear infinite;
    font-weight: bold;
    color:yellow;
  }
  @keyframes wiggle {
    0% { transform: translate(0,0) rotate(0deg); }
    25% { transform: translate(1px,-1px) rotate(1deg); }
    50% { transform: translate(-1px,1px) rotate(-1deg); }
    75% { transform: translate(1px,-1px) rotate(1deg); }
    100% { transform: translate(0,0) rotate(0deg); }
  }
