/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
  scrollbar-color: #b52d6a #262033;
}

#sillypic {
  width: 50px;
  transition: width 2s;
}

#sillypic:hover {
  width: 1000px;
}

#swayThatThang {
  z-index: 1;
  top: 5%;
  left: 7%;
  width: 90%;

  transform-origin: 40% 0;
}

div {
  margin: auto;
  max-width: 66.666666666%;
  background-color: rgba(171, 231, 214, 0.8);
  border: 5px solid #00ff22;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  /*background-color: #000505;*/
  background: url(/assets/jCodeRain.gif);
  color: purple;
  font-family: Verdana;
}

summary {
  list-style: none; /* removes default arrow in Firefox */
}

details > summary::-webkit-details-marker {
  display: none; /* removes default arrow in Chrome/Safari/Edge */
}

@keyframes sway {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}

/* Begin Blog-specific stuff */

body {
  background: url(assets/texture12Tile.png);
}

div {
  background-color: rgb(0, 42, 34);
  border: 1px solid #3600ff;
  text-align: center;
}

h1 {
  text-align: center;
  color: #ab0a26;
}
h2 {
  text-align: center;
  color: #b52d6a;
}
h3 {
  margin: 15px;
}
p {
  margin: 10px;
  text-align: left;
  color: #c714ec;
}
#feeling {
  background: url(assets/heartPinkGlitter.gif);
  display: inline-block;
  margin: 10px;
}
#words {
  background: black;
  color:#00ff22;
  border: 1px solid #00ff22;
}
#words p {
  background: black;
  color:#00ff22;
  border: 1px solid #00ff22;
}

#words p {
  margin: 10px;
  text-align: center;
}

a {
  color:#ff3acd
}

/* End Blog-specific stuff */

html {
  overflow-y: scroll;
}

#oneko {
  background-color: transparent;
  border: 0 solid Tomato;
}
