/* ive got no problem with people looking at my code, just a heads up: it might be inefficient or sloppy because im basically self-taught, so i dont think im the best role model haha */

@font-face {
  font-family: "general";
  src: url(https://that0nebritishrat.neocities.org/fonts/Minecraft.woff);
}

@font-face {
  font-family: "title";
  src: url(https://that0nebritishrat.neocities.org/fonts/capitolcity.woff2);
  
}

@font-face {
  font-family: "navbar";
  src: url(https://that0nebritishrat.neocities.org/fonts/SuperBakery-3lXyp.woff2);
}

html {
  overflow:scroll;
  overflow-x: hidden;
  cursor: url("images/bunny.png") 10 0, auto;
}

a {
  cursor: url("images/bunny.png") 10 0, auto;
}

::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: transparent;
}

body {
      align-content: center;
      background-image: url('images/art/artbg.jpg');
      background-repeat: repeat;
	    background-color: black;
	    color: #60463B;
	    font-family: "general";
}

.main-container {
  border-width: 5px; 
  border-style: solid;
  border-radius: 15px;
  border-color: #60463B;
  background-color: #F4EBE8;
  position: fixed;
  padding: 10px;
  z-index: 1;
}

.tab-box {
  border-width: 5px 5px 3px 5px;
  border-style: solid;
  border-radius: 15px 15px 0 0;
  border-color: #60463B;
  color: white;
  text-align: left;
  padding: 0 10px;
  background-color: #EF767A;
  position: absolute;
  height: 40px;
  left: -5px;
  top: -5px;
}

.tab-button {
  border-style: solid;
  border-width: 3px;
  height: 20px;
  width: 25px;
  text-align: center;
  padding: 5px 0 0 0;
  top: 5px;
  position: absolute;
  border-color: #60463B;
  color: #60463B;
  background-color: #F4EBE8;
}

.navbar {
  border-width: 5px; 
  border-style: solid;
  border-radius: 15px;
  border-color: #F4EBE8;
  background-color: #F4EBE8;
  position: fixed;
  padding: 0 0 15px 0;
  z-index: 1;
  font-family: "navbar";
  text-align: center;
}

.navbar ul{
  list-style-type: none;
  padding: 10px;
  margin: 0;
  font-size: 35px;
  font-family: "navbar";
}

.navbar a{
  color: #EF767A;
  text-decoration: none;
  padding: 10px;
}

.navbar a:hover {
  color: white;
}

.navbar li{
  display: inline-block;
  width:fit-content;
  transition: .2s ease; 
}

.navbar li:hover {
  transform: translateY(-20%);
}

.dropdown {
  position: relative;
  color: #EF767A;
}

.dropdown:hover{
  color: #60463B;
}

.navbar .dropdown-stuff {
  display: none;
  position: absolute;
  top: 40px;
  left:-10px;
  background-color: #d11406;
  border-style: solid;
  border-width: 3px;
  border-color: #d11406;
  border-radius:10px;
  z-index: 7;
  text-align: left;
}

.dropdown-stuff li {
  padding: 5px;
  font-size: 0.85em;
}

.dropdown:hover .dropdown-stuff{
  display: block;
}

.viewbox {
  /*border-style: solid;*/
  border-width: 1px;
  border-color: black;
  text-align: center;
  position: absolute;
  top: 50px;
  left: 10px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.hviewbox {
  /*border-style: solid;*/
  border-width: 1px;
  border-color: black;
  position: absolute;
  top:5px;
  left: 5px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.post {
  /*border-style: solid;*/
  border-width: 1px;
  border-color: black;
  width: 95%;
  margin: 10px;
  position: relative;
}

.name {
  /*border-style: solid;*/
  border-width: 1px;
  border-color: black;
  width: 612px;
  height: 1.5em;
  text-align: left;
  font-size: 0.95em;
  position: absolute;
  color: #d11406;
}

.art {
  border-style: solid;
  border-width: 0 0 0 3px;
  border-color: #d11406;
  width: 94%;
  top: 40px;
  left:12px;
  overflow-y: auto;
  position: absolute;
  color:#d11406;
}

.textbox {
  /*border-style: solid;*/
  border-width: 1px;
  border-color: #d11406;
  font-size: 0.75em;
  position: absolute;
}

.display {
  height:112px;
  border-style:solid;
  border-width:3px;
  border-color:#d11406;
  vertical-align:top;
  display: inline-block;
}

#sticker {
  border-width:3px;
  filter:
    drop-shadow(3px 0 0 white)
    drop-shadow(-3px 0 0 white)
    drop-shadow(0 3px 0 white)
    drop-shadow(0 -3px 0 white);
  position: absolute;
  z-index: 5;
}

#text {
writing-mode: vertical-rl;
text-orientation: downwards;
white-space: nowrap;
position: fixed;
top:30px;
left:550px;
height: 495px;
font-family: "navbar";
font-size: 6em;
z-index: 10;
}

#pfp {
  animation: jerky 1s infinite;
}

@keyframes jerky {
  0% {
    transform: rotate(2deg);
  }

  50% {
     transform: rotate(2deg);
  }

  51% {
    transform: rotate(-2deg);
  }

  100% {
  transform: rotate(-2deg);
  }
}

