@import url('https://fonts.googleapis.com/css?family=Press+Start+2P|VT323&display=swap');

a, button, a:hover, button:hover, .box {
  cursor: url("gir.png"), auto;
}
body {
  color: deeppink;
  background-color: black;
  background-image: url(/gliterybuny.gif);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 500px;
  cursor: url("gir.png"), auto;
}
@media screen and (max-width:750px) {
body {
  background-size: 50%;
}
}
.container {
  margin: auto;
  text-align: center;
  margin-top: 1%;
  background: black;
  width: 800px;
  border: 10px solid transparent;
  border-image: linear-gradient(to bottom left, red, orange, yellow, lime, cyan, blue, darkviolet, deeppink) 1 stretch;
  padding: 25px;
  word-break: break-word;
}
.popup {
  margin: auto;
  text-align: center;
  margin-top: 1%;
  border-radius: 10px;
  background: black;
  border: 3px ridge deeppink;
  padding: 23px;
  z-index: 99;
  position: fixed;
  overflow: auto;
}
@media screen and (max-width:800px) { 
.container, .popup {
  width: 99vw;
  padding: 0;
  margin: 0;
}
}
iframe{
  border: 10px solid transparent;
  border-image: linear-gradient(to top left, red, orange, yellow, lime, cyan, blue, darkviolet, deeppink) 1 stretch;
}
.colbox {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.column1 {
  width: 31%;
  text-align: right;
  display: inline-block;
}
.column2 {
  width: 60%;
  text-align: left;
  display: inline-block;
}
@media screen and (max-width:600px) { 
.column1, .column2 {
  width: 100%;
  text-align: center;
}
}
.column3 {
  width: 3%;
  display: inline-block;
}
@media screen and (max-width:600px) { 
.column3 {
  display: none;
}
}
.column4 {
  width: 25%;
  text-align: right;
  display: inline-block;
}
.column5 {
  width: 75%;
  text-align: left;
  display: inline-block;
}
textarea {
  padding: 5px;
  border: 2px solid deeppink;
  background-color: black;
  color: deeppink;
  border-radius: 2px;
  resize: none;
  cursor: url("gir.png"), auto;
}
 .rainbowo {
  background-image: linear-gradient(to bottom right, red, orange, yellow, lime, cyan, blue, darkviolet, deeppink);
  color:transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.code {
  font-family: 'press start 2p', cursive;
  color: white;
  font-size: 20px;
  letter-spacing: 7px;
  word-spacing: 10px;
}
section {
  display:none;
}
section:target {
  display:inline-block;
}
.index {
  display:inline-block;
}
section:target~.index {
  display:none;
}
.tab {
  display: inline;
  border: none;
  padding: 0px
}
button {
  padding: 10px;
  border: 2px solid deeppink;
  border-radius: 5px;
  background-color: black;
  color: deeppink;
  font-family: 'press start 2p', cursive; font-size: 25px;
  cursor: pointer;
}
#close {
  padding: 3px;
  border: 2px solid deeppink;
  border-radius: 3px;
  background-color: black;
  color: deeppink;
  font-family: 'press start 2p', cursive; font-size: 10px;
}
.tab button:hover, button:hover {
  background-color: deeppink;
  color: black;
}
.tabcontent {
  display: none;
  border: none;
}
h1, h2, h3 {
  font-family: 'press start 2p', cursive;
}
p, ol, li {
  font-family: 'Jokerman', 'VT323', monospace; font-size: 1.7em;
}
nav {
  font-family: 'VT323', monospace; font-size: 50px;
}
.box {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.caption {
  opacity:0;
  top: 0;
  right:0;
  bottom:0;
  left:0;
  position:absolute;
  background-color: black;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 20, 147, 1);
  font-family: 'VT323', monospace; font-size: 20px;
  text-align: center;
}
.box:hover .caption {
  opacity: 1;
  position: absolute;
  transition:ease;
}
a:link {
  color: darkviolet;
}
a:visited, a:active {
  color: white;
}
a:hover {
  color: transparent;
  animation: rainbo 0.4s linear 0s infinite normal;
  background-clip:text;
  -webkit-background-clip: text;
}
::selection {
  background: deeppink;
  opacity: 1;
  color: black;
}
@keyframes rainbo {
0%{background-image: linear-gradient(to bottom right, red,orange,yellow,lime,cyan,blue,darkviolet,deeppink)}
14.28%{background-image: linear-gradient(to bottom right,orange,yellow,lime,cyan,blue,darkviolet,deeppink,red)}
28.57%{background-image: linear-gradient(to bottom right,yellow,lime,cyan,blue,darkviolet,deeppink,red,orange)}
42.86%{background-image: linear-gradient(to bottom right,lime,cyan,blue,darkviolet,deeppink,red,orange,yellow)}
57.14%{background-image: linear-gradient(to bottom right,cyan,blue,darkviolet,deeppink,red,orange,yellow,lime)}
71.43%{background-image: linear-gradient(to bottom right,blue,darkviolet,deeppink,red,orange,yellow,lime,cyan)}
85.71%{background-image: linear-gradient(to bottom right,darkviolet,deeppink,red,orange,yellow,lime,cyan,blue)}
100%{background-image: linear-gradient(to bottom right,deeppink,red,orange,yellow,lime,cyan,blue,darkviolet)}
}