/* top of css */

body {
  background: black url("https://i.imgur.com/IFRnj1Q.png") no-repeat center
    fixed;
  background-size: 100% 100%;
  color: white;
  font-size: 16px;
  line-height: 1.5em;
}
/* link color */
a {
  color: #5581fc;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
  animation: glow 1s infinite;
}

@keyframes glow {
  0% {
    text-shadow:
      0 0 5px #55b1fc,
      0 0 10px #55b1fc,
      0 0 20px #55b1fc,
      0 0 40px #55b1fc;
  }
  50% {
    text-shadow:
      0 0 10px #55b1fc,
      0 0 20px #55b1fc,
      0 0 30px #55b1fc,
      0 0 50px #55b1fc;
  }
  100% {
    text-shadow:
      0 0 5px #55b1fc,
      0 0 10px #55b1fc,
      0 0 20px #55b1fc,
      0 0 40px #55b1fc;
  }
}

/* list thing */
ul {
  list-style: none;
  padding: 0;
}

/* -== quick ctrl F categories (2 find stuff) ==- */

/* containers */
/*  main + articles  */
/* dropdown */
/* scrollbox */
/* buttons */
/* snippet zone */

.container {
  width: 100%;
  max-width: 100%;
  margin: 10px auto 10px;
  gap: 3rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
}

aside {
  flex-shrink: 0;
  padding: 5rem 1rem 1rem 0;
}

.container2 {
  width: 100%;
  max-width: 100%;
  display: flex;
  gap: 10px;
  margin: 1px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.container3 {
  width: 100%;
  max-width: 100%;
  margin: 10px auto 10px;
  gap: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.stampcontainer {
  width: 100%;
  max-width: 100%;
  margin: 10px 0;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media (max-width: 600px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
}

/* main + articles */
#blehtitle {
  font-weight: bold;
  text-align: center;
}

#blehtitle2 {
  font-weight: bold;
  text-align: center;
}

#contactlist {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

#logo {
  animation: glow 2s infinite;
}

#jumptotop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

main {
  border: 4px groove #0c0c0c;
  background: linear-gradient(
    to bottom,
    #1b1c1e 2%,
    #000000 12%,
    #080a0a 50%,
    #08090a 98%,
    #000000 100%
  );
  box-shadow: 10px 5px 5px 0px rgba(0, 0, 0, 0.65);
  border-radius: 10px 10px 0 0;
  padding: 1rem;
  margin: 1rem auto;
  width: 95%;
  max-width: clamp(300px, 90vw, 650px);
  flex: 1;
  min-width: 0;
}

article {
  width: 100%;
  max-width: 650px;
  text-shadow: 2px rgba(0, 0, 0, 1);
  width: 65%;
  max-width: 400px;
}

/* nav */
header {
  width: 95%;
  max-width: 700px;
  margin: 1rem auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  border: 4px groove #0c0c0c;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 111, 1) 0%,
    rgba(20, 31, 158, 1) 50%,
    rgba(16, 25, 146, 1) 51%,
    rgba(20, 45, 172, 1) 100%
  );

  box-shadow: 10px 5px 5px 0px rgba(0, 0, 0, 0.65);
  border-radius: 32px;
}

header ul {
  font-size: clamp(14px, 4vw, 24px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: auto;
  flex-wrap: wrap;
}

header h1 {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.1rem;
  animation: jerky 2s infinite;
}

header a:visited {
  animation: none;
  text-decoration: none;
}

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

  49% {
    transform: rotate(1deg);
  }

  50% {
    transform: rotate(-1deg);
  }

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

/* footer */
footer {
  width: 95%;
  max-width: 800px;
  margin: 1rem auto;
  padding: 1rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* buttons */
button {
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 6.5rem;
  height: 3rem;
  border-radius: 32px;
  padding: 10px;
  border: 4px ridge #0c0c0c;
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(127, 162, 219, 1) 1%,
    rgba(77, 121, 209, 1) 5%,
    rgba(32, 68, 201, 1) 39%,
    rgba(32, 68, 201, 1) 81%,
    rgba(30, 48, 153, 1) 97%,
    rgba(32, 68, 201, 1) 100%,
    rgba(32, 68, 201, 1) 100%
  );
  user-select: none;
}

button a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

button a:hover {
  color: #ffffff;
}

button:hover {
  border: 4px ridge #0c0c0c;
  background: linear-gradient(
    to bottom,
    rgba(109, 179, 242, 1) 0%,
    rgba(84, 163, 238, 1) 50%,
    rgba(54, 144, 240, 1) 51%,
    rgba(30, 105, 222, 1) 100%
  );
}

button:active {
  border: 2px inset #0c0c0c;
  background: linear-gradient(
    to bottom,
    rgba(53, 88, 196, 1) 1%,
    rgba(52, 61, 158, 1) 5%,
    rgba(7, 24, 132, 1) 39%,
    rgba(52, 61, 158, 1) 81%,
    rgba(7, 24, 132, 1) 97%,
    rgba(32, 68, 201, 1) 100%,
    rgba(53, 88, 196, 1) 100%
  );
  box-shadow: inset 0px 0px 10px 2px rgba(0, 21, 88, 0.9);
  transform: translateY(1px);
}

/* buttons for socials*/

/* discord button */
.discord-btn {
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(
    to bottom,
    rgba(155, 140, 170, 1) 1%,
    rgba(140, 125, 160, 1) 5%,
    rgba(120, 100, 150, 1) 39%,
    rgba(120, 100, 150, 1) 81%,
    rgba(105, 85, 135, 1) 97%,
    rgba(120, 100, 150, 1) 100%,
    rgba(120, 100, 150, 1) 100%
  );
  min-width: clamp(5rem, 15vw, 8rem);
  font-size: clamp(14px, 3vw, 16px);
}

.discord-btn img {
  width: clamp(20px, 5vw, 30px);
  height: auto;
}

.discord-btn:hover {
  background: linear-gradient(
    to bottom,
    #aa9fb5 1%,
    #9e93ad 5%,
    #8d7da5 39%,
    #8d7da5 81%,
    #7f6b9d 97%,
    #8d7da5 100%,
    #8d7da5 100%
  );
}

.discord-btn:active {
  background: linear-gradient(
    to bottom,
    rgba(110, 95, 130, 1) 1%,
    rgba(100, 85, 120, 1) 5%,
    rgba(85, 70, 110, 1) 39%,
    rgba(100, 85, 120, 1) 81%,
    rgba(85, 70, 110, 1) 97%,
    rgba(120, 100, 150, 1) 100%,
    rgba(110, 95, 130, 1) 100%
  );
  box-shadow: inset 0px 0px 10px 2px rgba(42, 33, 54, 0.9);
}

.discord-btn a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.discord-btn a:hover {
  animation: none;
  text-decoration: none;
}

/* newgrounds button */
.newgrounds-btn {
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(
    to bottom,
    #ffc637 1%,
    #ffb11f 5%,
    #fa9a00 39%,
    #fa9a00 81%,
    #d86800 97%,
    #fa9a00 100%,
    #fa9a00 100%
  );
  min-width: clamp(5rem, 15vw, 8rem);
  font-size: clamp(14px, 3vw, 16px);
}

.newgrounds-btn img {
  filter: brightness(0) invert(1);
  width: clamp(20px, 5vw, 30px);
  height: auto;
}

.newgrounds-btn:hover {
  background: linear-gradient(
    to bottom,
    #ffde37 1%,
    #ffcb1f 5%,
    #fab700 39%,
    #fab700 81%,
    #d88500 97%,
    #fab700 100%,
    #fab700 100%
  );
}

.newgrounds-btn:active {
  background: linear-gradient(
    to bottom,
    #ff9a27 1%,
    #ff8011 5%,
    #ee6700 39%,
    #ee6700 81%,
    #ce3e00 97%,
    #ee6700 100%,
    #ee6700 100%
  );
  box-shadow: inset 0px 0px 10px 2px rgba(102, 34, 3, 0.9);
}

.newgrounds-btn a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.newgrounds-btn a:hover {
  animation: none;
  text-decoration: none;
}

/* tumblr button */
.tumblr-btn {
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(
    to bottom,
    #4944c6 1%,
    #3a3ebc 5%,
    #333aa5 39%,
    #333aa5 81%,
    #212e6b 97%,
    #333aa5 100%,
    #333aa5 100%
  );
  min-width: clamp(5rem, 15vw, 8rem);
  font-size: clamp(14px, 3vw, 16px);
}

.tumblr-btn img {
  filter: brightness(0) invert(1);
  width: clamp(20px, 5vw, 30px);
  height: auto;
}

.tumblr-btn:hover {
  background: linear-gradient(
    to bottom,
    #5e71da 1%,
    #526ed6 5%,
    #3e63d2 39%,
    #3e63d2 81%,
    #293caa 97%,
    #3e63d2 100%,
    #3e63d2 100%
  );
}

.tumblr-btn:active {
  background: linear-gradient(
    to bottom,
    #3a3199 1%,
    #312f91 5%,
    #2b2d85 39%,
    #2b2d85 81%,
    #282268 97%,
    #2b2d85 100%,
    #2b2d85 100%
  );

  box-shadow: inset 0px 0px 10px 2px rgba(11, 1, 66, 0.9);
}

.tumblr-btn a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.tumblr-btn a:hover {
  animation: none;
  text-decoration: none;
}

/* bluesky button */
.bluesky-btn {
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(
    to bottom,
    #71c6ed 1%,
    #59a3e9 5%,
    #479fe7 39%,
    #479fe7 81%,
    #1d74d1 97%,
    #479fe7 100%,
    #479fe7 100%
  );
  min-width: clamp(5rem, 15vw, 8rem);
  font-size: clamp(14px, 3vw, 16px);
}

.bluesky-btn img {
  filter: brightness(0) invert(1);
  width: clamp(20px, 5vw, 30px);
  height: auto;
}

.bluesky-btn:hover {
  background: linear-gradient(
    to bottom,
    #aae8f4 1%,
    #9cd5f2 5%,
    #91d4f1 39%,
    #91d4f1 81%,
    #6fbeeb 97%,
    #91d4f1 100%,
    #91d4f1 100%
  );
}

.bluesky-btn:active {
  background: linear-gradient(
    to bottom,
    #4984cb 1%,
    #3a61c4 5%,
    #365fb8 39%,
    #365fb8 81%,
    #2b4591 97%,
    #365fb8 100%,
    #365fb8 100%
  );

  box-shadow: inset 0px 0px 10px 2px rgba(1, 29, 105, 0.9);
}

.bluesky-btn a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.bluesky-btn a:hover {
  animation: none;
  text-decoration: none;
}

.scrollbox {
  width: 90%;
  max-width: 350px;
  height: 70px;
  padding: 15px;
  border-radius: 12px 12px 12px 12px;
  border: 4px ridge #0c0c0c;
  color: black;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(225, 232, 244, 1) 3%,
    rgba(255, 255, 255, 1) 15%,
    rgba(255, 255, 255, 1) 84%,
    rgba(225, 232, 244, 1) 97%,
    rgba(255, 255, 255, 1) 100%,
    rgba(28, 28, 28, 1) 100%,
    rgba(27, 27, 27, 1) 100%
  );
  overflow: auto;
}

/* favorite album display */

.miniscroll {
  width: clamp(120px, 40vw, 240px);
  height: clamp(100px, 25vw, 160px);
  padding: 15px;
  padding-left: 0%;
  padding-right: 0%;
  border-radius: 12px 12px 12px 12px;
  border: 4px ridge #0c0c0c;
  color: black;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(225, 232, 244, 1) 3%,
    rgba(255, 255, 255, 1) 15%,
    rgba(255, 255, 255, 1) 84%,
    rgba(225, 232, 244, 1) 97%,
    rgba(255, 255, 255, 1) 100%,
    rgba(28, 28, 28, 1) 100%,
    rgba(27, 27, 27, 1) 100%
  );
  overflow-x: hidden;
}

.minialbums {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.minialbums div {
  position: relative;
  width: 65px;
  height: 65px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: #9e9e9e 2px 2px 5px;
}

.minialbums img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: #9e9e9e 2px 2px 5px;
}

.minialbums div img {
  object-fit: cover;
}

.minialbums div span {
  position: absolute;
  bottom: 5px;
  left: 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  background: white;
  color: black;
  padding: 4px 8px;
  font-size: 10px;
  line-height: 1;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.4s ease, opacity 0.5s ease;
}

@media screen and (max-width: 640px) {
  .minialbums div span {
    font-size: 12px;
    padding: 3px 6px;
  }
}

.minialbums div:hover span {
  opacity: 1;
  transform: none;
}

/* fanlist scroll */
.minifan {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.minifan div {
  position: relative;
  width: 55px;
  height: 55px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: #9e9e9e 2px 2px 5px;
}

.minifan div img {
  object-fit: cover;
}

.minifan div span {
  position: absolute;
  bottom: 5px;
  left: 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  background: white;
  color: black;
  padding: 4px 8px;
  font-size: 10px;
  line-height: 1;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.4s ease, opacity 0.5s ease;
}

@media screen and (max-width: 640px) {
  .minifan div span {
    font-size: 12px;
    padding: 3px 6px;
  }
}

.minifan div:hover span {
  opacity: 1;
  transform: none;
}

/* favgame mini scroll */

.minigames {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.minigames div {
  position: relative;
  width: 75px;
  height: 85px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: #9e9e9e 2px 2px 5px;
}

.minigames img {
  width: 75px;
  height: 85px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: #9e9e9e 2px 2px 5px;
}

.minigames div img {
  object-fit: cover;
}

.minigames div span {
  position: absolute;
  bottom: 5px;
  left: 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  background: white;
  color: black;
  padding: 4px 8px;
  font-size: 10px;
  line-height: 1;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.4s ease, opacity 0.5s ease;
}

@media screen and (max-width: 640px) {
  .minigames div span {
    font-size: 12px;
    padding: 3px 6px;
  }
}

.minigames div:hover span {
  opacity: 1;
  transform: none;
}

/* V snippet zone V */

/* dropdown snippet */
.dropdown {
  font-size: 16px;
  position: relative;
  display: inline-block;
  z-index: 100;
}

.dropdown button {
  font-weight: bold;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.dropdown-content {
  color: white;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  background: linear-gradient(
    to bottom,
    rgb(17, 17, 17) 0%,
    rgb(45, 45, 45) 2%,
    rgb(13, 13, 13) 20%,
    rgb(10, 10, 10) 92%,
    rgb(33, 33, 33) 98%,
    rgb(28, 28, 28) 100%,
    rgb(28, 28, 28) 100%,
    rgb(27, 27, 27) 100%,
    rgb(28, 28, 28) 100%
  );
  min-width: 100px;
  z-index: 999;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}

.dropdown:hover .dropdown-content {
  border-radius: 12px;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.dropdown-content a {
  color: #ffffff;
  border-radius: 24px;
  border: 4px ridge #0c0c0c;
  padding: 0.02em;
  margin: 0.6rem;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: block;
  background: linear-gradient(
    to bottom,
    rgba(127, 162, 219, 1) 1%,
    rgba(77, 121, 209, 1) 5%,
    rgba(32, 68, 201, 1) 39%,
    rgba(32, 68, 201, 1) 81%,
    rgba(30, 48, 153, 1) 97%,
    rgba(32, 68, 201, 1) 100%,
    rgba(32, 68, 201, 1) 100%
  );
}

.dropdown-content a:hover {
  border-radius: 24px;
  background: linear-gradient(
    to bottom,
    rgba(109, 179, 242, 1) 0%,
    rgba(84, 163, 238, 1) 50%,
    rgba(54, 144, 240, 1) 51%,
    rgba(30, 105, 222, 1) 100%
  );
}

.dropdown-content a:active {
  border: 3px ridge #0c0c0c;
  background: linear-gradient(
    to bottom,
    rgba(53, 88, 196, 1) 1%,
    rgba(52, 61, 158, 1) 5%,
    rgba(7, 24, 132, 1) 39%,
    rgba(52, 61, 158, 1) 81%,
    rgba(7, 24, 132, 1) 97%,
    rgba(32, 68, 201, 1) 100%,
    rgba(53, 88, 196, 1) 100%
  );
  box-shadow: inset 0px 0px 10px 2px rgba(0, 55, 126, 0.856);
  transform: translateY(0px);
}
/* end of snippet zone */

/* responsive shieeetttt */
@media (max-width: 600px) {
  header ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  article p{
    width: auto;
  }
}

/* webring shtuff */
#ultraring,
#sogma {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.container:last-of-type {
  max-width: 100%;
  gap: 2rem;
}

/* -== end of css ==- */
