body {
    background-image: url('https://dl.dropbox.com/scl/fi/j4940rb4mhc68f95mhccf/2910543qo3q52aeds.gif?rlkey=14v6eoe4m062sfpwp11w111fy&st=uz7sez71&dl=0.gif');
    background-attachment: fixed;
    background-repeat: repeat;
}

::selection {
    /* Change highlight background color */
    background: 	#ff9a00;
    /* Change highlight text color */
    color: black;
    }

    ::-webkit-scrollbar {
        width: 16px
        }
        ::-webkit-scrollbar-corner {
        background: #eee
        }
         
        ::-webkit-scrollbar-track:vertical {
        background: linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
        }
         
        ::-webkit-scrollbar-thumb {
        border: 1.5px solid #888;
        border-radius: 3px;
        box-shadow: inset 0 -1px 1px #fff, inset 0 1px 1px #fff;
        background-color: #eee;
        }
        ::-webkit-scrollbar-thumb:vertical {
        background: url("https://dl.dropbox.com/s/9a29qbkza3gmgl7/scroll1.png"), linear-gradient(90deg, #eee 45%, #ddd 0, #bbb);
        background-repeat: no-repeat;
        background-size: 65% auto, cover;
        background-position: center;
        }
         
        ::-webkit-scrollbar-button:vertical:end:increment,
        ::-webkit-scrollbar-button:vertical:start:decrement {
        display: block
        }
         
        ::-webkit-scrollbar-button:vertical {
        height: 15px
        }
        ::-webkit-scrollbar-button:vertical:start:decrement {
        background: white;
        background: url("https://dl.dropbox.com/s/n9ji42h9hdgdtpc/scroll3.png"), linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
        background-repeat: no-repeat;
        background-position: center;
        -moz-background-size: 100% auto, cover;
        -webkit-background-size: 100% auto, cover;
        -o-background-size: 100% auto, cover;
        background-size: 100% auto, cover;
        background-position: center;
        border-radius: 0 3px 0 0;
        }
         
        ::-webkit-scrollbar-button:vertical:start:increment {
        display: none;
        }
        ::-webkit-scrollbar-button:vertical:end:decrement {
        display: none;
        }
         
        ::-webkit-scrollbar-button:vertical:end:increment {
        background: white;
        background: url("https://dl.dropbox.com/s/cdcco6pih7n1lae/scroll4.png"), linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
        background-repeat: no-repeat;
        background-position: center;
        -moz-background-size: 100% auto, cover;
        -webkit-background-size: 100% auto, cover;
        -o-background-size: 100% auto, cover;
        background-size: 100% auto, cover;
        background-position: center;
        border-radius: 0 0 3px 0;
        }

        * {
            cursor: url('https://cdn.cursors-4u.net/previews/cute-halloween-ghost-35286bd9-32.webp') 32 32, auto !important;
          }

a {
    text-decoration: none; 
    color: black; 
}

.lines {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 300;
    opacity: 0.05;
    }
     
    .lines:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, .5) 51%);
    background-size: 100% 4px;
    will-change: background, background-size; animation: scanlines 0.2s linear infinite;
    }
     
    @keyframes scanlines {
    from {
    background: linear-gradient(to bottom, transparent 10%, rgba(0, 0, 0, .5) 51%); background-size: 100% 4px; }
    to {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .5) 50%, transparent 51%);
    background-size: 100% 4px;
    }
    }

.corkboard {
    background-image: url('https://files.catbox.moe/mcbqbb.jpg');
    width:1100px;
    height:800px;
    margin: 0 auto;
    background-size: contain;
    background-position: center; 
    background-repeat: no-repeat; 
    padding-right:50px;
    padding-left:50px;
    padding-top:75px;
    padding-bottom:75px;
    box-sizing: border-box;
}

.poll {
    width:200px;
}
 
  @keyframes hi {
    0% {
      transform: rotate(5deg);
    }
 
    50% {
      transform: rotate(-5deg);
    }
 
    100% {
      transform: rotate(5deg);
    }
  }

.pc {
    width:200px;
}

.img-infinitebouncehover {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  
  .img-infinitebouncehover:hover {
    -webkit-animation-name: bounces;
    animation-name: bounces;
  }
  
  @-webkit-keyframes bounces {
    0%, 100%, 20%, 50%, 80% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    40% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px);
    }
    60% {
      -webkit-transform: translateY(-15px);
      transform: translateY(-15px);
    }
  }
  
  @keyframes bounces {
    0%, 100%, 20%, 50%, 80% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    40% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px);
    }
    60% {
      -webkit-transform: translateY(-15px);
      transform: translateY(-15px);
    }
  }       