/* fonts */

@font-face{font-family: 'iosevka';
	src: url('/global_assets/iosevka-ss08-regular.woff') format('woff');
}

/* animations */

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

@keyframes carameldansen {
  from {color: #ff0000; }
  10% {color: #ff6100; }
  20% {color: #ff9200; }
  30% {color: #daff00; }
  40% {color: #27ff00; }
  50% {color: #00ff76; }
  60% {color: #00abff; }
  70% {color: #0015ff; }
  80% {color: #a600ff; }
  90% {color: #ff00b4; }
  100% {color: #ff002d; }
}

/* elements */ 

:root{
  font-family: 'iosevka-ss08-regular', monospace;
  color-scheme: light dark;
  background: url(/global_assets/world-bg.png);
  background-color:#2e87c8;
  background-size: cover;
  background-blend-mode: lighten;
  background-position: center;
  background-repeat: no-repeat;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  margin: 0;
}


ol {
  text-align: left;
}

/* classes */

.flex-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  flex-grow: 0;
  max-width: 30vw;
  margin: 0;
}

.emphasis {
  text-decoration: underline;
  font-weight: bolder;
}

.dropdown:hover{
  color: #AAABB5;
}
.paragraph {
  text-align: justify;
  text-justify: auto;
  margin-top: 0.5rem;
  display: none;
}
.paragraph.open {
  display: block;
}

.button {
  max-width: 35%;
  height: auto;
  transition: transform .7s ease-in-out;
}
.button:hover {
  /* rotate: z 45deg; */
  transform: rotate(30deg);
  /* animation: dance 1s infinite steps(1,end); */
}

/* ids */

#world-logo {
  max-width: 60%;
  height: auto;
}
#world-logo:hover {
  animation: dance 1s infinite steps(1,end);
}

#fun {
  animation: carameldansen 1s linear 0s infinite;
}
