/* Font Face */
@font-face {
  font-family: "h2";
  src: url("font/h2.ttf") format("truetype");
}

/* Body */
body {
  background-color: black;
  background-image: url("img/assets/bg.gif");
  background-repeat: repeat;
  background-position: center;
  background-attachment: fixed;
  color: white;
  font-family: "h2";
  font-size: 12pt;
  text-shadow: 2px 2px black;
  list-style: none;
}

/* Links */
a,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #FF0048;
  text-decoration: none;
}

/* Div */
div {
  width: 300px;
  padding: 20px;
  font-smooth: never;
}

/* Top and bottom bars */
.decorative-bar {
  object-fit: fixed;
  width: 100vw;        
  display: block;
  position: fixed;
  right: 0;
  z-index: 1;
  pointer-events:none;
}

.top-bar {
  top: 0;
  height: 70px;      
}

.bottom-bar {
  bottom: 0;
  height: 7%;  
}

/* Centerbox */
.centerbox {
  text-align: center;
  background-color: #090104;
  background-image: linear-gradient(180deg, #090104, #ff0048 1000%);
  width: 450px;
  border: 2px solid #FF0048;
  padding-top: 70px;
  padding-bottom: 2%;
  margin: 0;
  position: absolute;
  top: -1%;
  left: 220px;
  z-index: 0;
  border-radius: 15px;
}

/* Side Navigation */
.sidenav {
  text-align: left;
  width: 160px;
  height: 100%;
  padding: 16px;
  padding-top: 93px;
  top: 0;
  left: 0;
  overflow-x: hidden;
  font-size: 100%;
  display: inline-block;
  position: fixed;
  background-color: black;
  border: 2px solid #FF0048;
}

/* sidebox */
.sidebox {
  width: 150px;
  padding: 0px;
  font-smooth: never;
  overflow-x: hidden;
  left: 0;
  position: fixed;
  top: 0;
}


/* Font Class */
.anonymous-pro-regular {
  font-family: "Anonymous Pro", monospace;
  font-weight: 400;
  font-style: normal;
}

/* Spinner */
.spinners {
  opacity: 1;
  position: fixed;
  z-index: -2;
  top: 80%;
  left: 90%;
  transform: translate(-50%, -50%);
  mix-blend-mode: overlay;
}

/* Animation */
.rotateslower {
  animation: rotation 20s infinite linear;
}

/* Keyframes */
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* Horizontal Ruler */
hr {
    color: #FF0048;
}

/* List */
li {
    list-style: none;
}

/* Iframe */

iframe {
  height: 80vh;
  width: 150px;
  resize: both;
  overflow-x: hidden;
  border: none;
}
