html {
    cursor: url("cursors/beeep.png"), auto;
}

@font-face {
    font-family:font2;
    src: url("fonts/Dotrix.ttf");
    font-style:normal;
}

::-moz-selection { /* Code for Firefox */
  color: #000000;
  background: rgba(53, 48, 129, 0.3);
}

::selection {
  color: #000000;
  background: rgba(53, 48, 129, 0.3);
}
    
body {
    background-color: #16143B;
    background-attachment: fixed;
    background-size: cover;
}

::-webkit-scrollbar {
  width: 10px;
  background: #645fae;
}



::-webkit-scrollbar-thumb {
  background: #3d3484; 
}

::-webkit-scrollbar-thumb:hover {
  background: #514ca7; 
}

  .crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

@keyframes flicker {
  0% {
  opacity: 0.27861;
  }
  5% {
  opacity: 0.34769;
  }
  10% {
  opacity: 0.23604;
  }
  15% {
  opacity: 0.10626;
  }
  20% {
  opacity: 0.18128;
  }
  25% {
  opacity: 0.10626;
  }
  30% {
  opacity: 0.18128;
  }
  35% {
  opacity: 0.23604;
  }
}

.crt::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}

.home {
    text-shadow: 0px 2px 5px hsla(0, 0%, 0%, 0.5);
    font-size: 1.7em;
    font-family: "font2";
    color: #ffffff;
    position:fixed; bottom: 0px;
    background-color: rgba(0, 0, 0, 0.26);
    margin-bottom: 0.5em;
    margin-left: 0.2em;
    padding: 0.5em;
    border-radius: 10px;
    cursor: url("cursors/beeeep.png"), auto;
    z-index: 10;
}

#box {
    color: #ffffff;
    align-content: flex-start;
    background-color: #645fae;
    margin: 50px;
    margin-left: 150px;
    margin-right: 150px;
    padding: 20px;
    text-align: center;
    font-family: 'font2';
    box-shadow: 0px 2px 15px rgba(255, 255, 255, 0.2);
    text-shadow: 0px 2px 5px #000000ff;
}

.blogcontent {
  width: 650px ;
  float: left;
  text-align: left;
  margin-top: 10px;
  padding: 10px;
  font-family: 'font2';
  font-size: 16px;
  text-shadow: 2px 2px 2px hsla(0, 0%, 0%, 0.5);
  justify-content: center;
  height: 462px;
  overflow: auto;
  border-style: solid;
  border-width: thin;
  box-shadow: 10px 8px 10px hsla(0, 0%, 0%, 0.2);
}