/* 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{
  --colgate-1: oklch(75% 0.1272 195.67);
  --colgate-2: oklch(70% 0.1272 195.67);
  --colgate-3: oklch(65% 0.1272 195.67);
  --colgate-4: oklch(60% 0.1272 195.67);
  --colgate-5: oklch(55% 0.1272 195.6);
  
  --bg-1: oklch(23% 0.1272 195.67); /* dark buttons when clicked */
  --bg-2: oklch(19% 0.1272 195.67); /* dark buttons */
  --bg-3: oklch(15% 0.1272 195.67); /* spacing, secondary elements */
  --bg-4: oklch(13% 0.1272 195.67); /* main background color */
}

body {
  background: repeat url('/doomitchblud.png') fixed;
  background-size: cover;
  background-color: #50EBEC; 
  font-family: "DM Mono";
  animation-name: bgmove;
  animation-duration: 100s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

html, body {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  flex-direction: column;
  align-items: center;
}

h1, h2, h3, p, a, ul, #greeting {
  color: #CECECE;
  margin: 0px;
  overflow-wrap: break-all;
}

a {
  color: #50EBEC;
}

a:hover {
  background-color: #50EBEC;
  color: var(--bg-2);
}

.item {
  background: var(--bg-4);
  outline: 5px solid #162328;
  padding: 10px;
  margin: 10px;
  flex-basis: auto;
  height: 100%;
  flex-grow: 1;
  word-break: break-all;
  overflow-wrap: break-all;
  text-wrap-mode: wrap;
  min-width: 150px;
  transition: outline-color 0.2s ease;
}

.item:hover{
  outline-color: var(--colgate-1);
}

.link {
  color: #50EBEC;
  border-bottom: 1px solid #50EBEC;
  cursor: pointer;
}

.link:hover,
.link.active {
  background-color: #50EBEC;
  color: var(--bg-2);
}

header {
  display: flex;
  width: 100%;
  flex-grow: 1;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  min-height: 400px;
  max-height: 400px;
}

main {
  width: 50em;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  align-items: stretch;
  gap: 10px;
}

.maincontent {
  display: flex;
  width: 100%;
  flex-grow: 2;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.content {
  flex-grow: 2;
}

.sidebar {
  max-width: 150px;
}

.container {
  border-top: 2px solid #162328;
  padding: 20px 0;
}

.header {
  display: flex;
  flex-grow: 3;
  outline: 0px;
  background: rgba(0, 0, 0, 0);
  align-content: center;
  justify-content: center;
}

.flavor {
  flex-shrink: 4;
}

.logo {
  transform: scale(5, 1);
}

.big {
  width: 50em;
  height: 100em;
}

@font-face {
  font-family: 'Grape Soda';
  src: url("/GrapeSoda.ttf"), format("ttf");
}

@font-face {
  font-family: "Add";
  src: url("/ADDSBP__.TTF"), format("ttf");
}

@font-face {
  font-family: "Free Pixel";
  src: url("/FreePixel.ttf"), format("ttf");
}

@font-face {
  font-family: "DM Mono";
  src: url("/DMMono-Regular.ttf"), format("ttf");
}

@keyframes cool {
  0%   {filter: drop-shadow(4px 4px 2px #82374B) hue-rotate(90deg) saturate(300%);}
  30%  {filter: drop-shadow(4px 4px 2px #82374B) hue-rotate(180deg) saturate(300%);}
  60%  {filter: drop-shadow(4px 4px 2px #82374B) hue-rotate(270deg) saturate(300%);}
  100%  {filter: drop-shadow(4px 4px 2px #82374B) hue-rotate(360deg) saturate(300%);}
}

@keyframes bgmove {
  from {background-position: 0px, 0px}
  to {background-position: -200%, 0px}
}

@keyframes topmove {
  from {transform: translate(0px, 0px);}
  to {transform: translate(1201px, 0px);}
}

@keyframes spin{
  0% {transform: scaleX(100%);}
  25% {transform: scaleX(0%);}
  50% {transform: scaleX(-100%);}
  75% {transform: scaleX(0%);}
  100% {transform: scaleX(100%);}
}

#wordart {
  animation-name: topmove;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear
}

#bocchi {
  position: sticky;
  top: 700px;
  left: 1550px;
  scale: 200%;
  z-index: 500;
  object-position: right bottom;
  animation-name: spin;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out
}

.cool {
  color: red;
  animation-name: cool;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.small {
  font-size-adjust: 0.7;
  -webkit-text-stroke-width: 1px;
}