:root {
  --text: #f2f2f2;
  --background: #092230;
  --primary: #ca43a7 ;
}

*:focus {
  outline: none;
}

a {
  color: var(--text);
  text-decoration: none;
}

img {
  object-fit: contain;
  max-width: fit-content;
}

/* link hover stuff */
a.hover_top, 
a.hover_bottom {
  position: relative;
}

a.hover_top:before, 
a.hover_bottom:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: var(--text);
  transform: translate(-50%, -0.25rem);
  transition: 1s ease;
  border-radius: 1rem;
}

a.hover_bottom:after {
  top: auto;
  bottom: 0;
  transform: translate(-50%, 0.25rem);
}

a.hover_top:hover:before, 
a.hover_top:focus:before, 
a.hover_bottom:hover:after, 
a.hover_bottom:focus:after {
  width: 100%;
}

button:disabled:before, 
button:disabled:after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: var(--size);
  height: 19px;
  background: var(--yel);
  background: repeating-linear-gradient(-45deg, var(--yel), var(--yel) var(--size), var(--bla) var(--size), var(--bla) calc(var(--size) * 2));
  z-index: 9;
  content: '';
  left: 0;
  --size: 17px;
  --yel: #f2a417;
  --bla: #131617;
  z-index: 99999;
  top: 50%;
  left: 50%;
  width: 22rem;
  transform: translate(-50%, -50%) rotate(343deg);
  box-shadow: 0 0 20px rgba(0, 0, 0, 2059);
}

button:disabled:after {
  transform: translate(-50%, -50%) rotate(25deg);
}

/* return link */
body > main.appspage,
body > main.gamespage {
  position: absolute;
  width: 100%;
}
body > main > div > a.return {
  position: fixed;
  z-index: 1000;
  top: 3rem;
  left: 4rem;
  height: auto;
  aspect-ratio: 6/2;
  font-size: 1.5rem;
  font-family: 'Rubik';
  background-color: #0000004a;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
  width: fit-content;
  aspect-ratio: auto;
}

/* listing */
span.listing {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

span.listing > span.dot {
  width: 0.5rem;
  height: auto;
  aspect-ratio: 1/1;
  display: inline-block;
  position: relative;
}

span.listing > span.dot:before {
  content: '\f111';
  font-family: 'fontawesome';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
}

/* sticky */
aside#sticky {
  position: fixed;
  top: 50%;
  left: auto;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

aside#sticky > button {
  height: auto;
  aspect-ratio: 1/1;
  background: var(--text);
  border: none;
  box-sizing: border-box;
  padding: 0;
  min-width: 2.5rem;
  border-radius: 100%;
  opacity: 0.7;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

aside#sticky > button:hover, 
aside#sticky > button:focus {
  opacity: 1;
  box-shadow: 0 0 23px rgba(0, 0, 0, 30%);
}

#sticky button img {
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}

#sticky button:hover img, 
#sticky button:focus img {
  filter: grayscale(0);
}

/* site base */
body {
  background: rgb(1,39,78);
  background: linear-gradient(40deg, rgba(1,39,78,1) 0%, rgba(25,76,147,1) 28%, rgba(109,101,185,1) 68%, rgba(202,67,167,1) 100%);
  margin: 0;
}

body > main {
  /* width: 100%;
  height: 100%; */
}

body > main:before, body > main:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  background-color: var(--background);
  z-index: -1;
}

body > main:after {
  background-color: transparent;
  background-image: url("pattern.png");
  background-size: 2rem;
  background-repeat: repeat;
  opacity: 0.2;
}

body > main.homepage > div {
  width: 35%;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
  min-height: 100%;
}

/* header */
body > main.homepage > div > header {
  margin-top: 13.875rem;
  margin-bottom: 9rem;
  position: relative;
}
body > main.homepage.err > div > header {
  margin-bottom: 4rem;
}

body > main.homepage > div > header > h1 {
  text-transform: capitalize;
  font-size: 6.25rem;
  font-weight: normal;
  font-family: 'Rubik Mono One', Arial, Helvetica, sans-serif;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.125rem;
  display: block;
  line-height: 81px;
}
body > main.homepage.err > div > header > h1 {
  font-family: 'Rubik';
  font-weight: 700;
  font-size: 7rem;
}

body > main.homepage > div > header > hr {
  margin: 0;
  border: none;
  border-radius: 1rem;
  height: 3px;
  width: 100%;
  background: var(--text);
  margin-top: 4px;
}

/* socials / genres */
body > main.homepage > div > header > div.socials, 
div.genre {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0;
  font-family: 'Rubik';
}

body > main.homepage > div > header > div.socials > a.item, 
div.genre > div.item {
  width: 3.5rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 0.75rem;
  position: relative;
}

body > main.homepage > div > header > div.socials > a.item > i, 
div.genre > div.item > i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  transition: 0.4s ease;
}

body > main.homepage > div > header > div.socials > a.item > span, 
div.genre > div.item > span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 3rem);
  text-align: center;
  font-size: 1.125rem;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: 1s ease;
  opacity: 0;
  user-select: none;
  background: #000a;
}

body > main.homepage > div > header > div.socials > a.item:hover > span, 
body > main.homepage > div > header > div.socials > a.item:focus > span, 
div.genre > div.item:hover > span,
div.genre > div.item:focus > span {
  transform: translate(-50%, 2.25rem);
  opacity: 1;
}

/* about */
body > main.homepage > div > header > div.socials, 
body > main.homepage > div > header > div.about, 
body > main.homepage.err > div > header > div {
  transition: 0.8s ease;
  opacity: 1;
  position: absolute;
  width: 100%;
}
body > main.homepage > div > header > div.socials {
  margin: 0;
  transform: translateY(-10px);
}
body > main.homepage > div > header > div.about {
  transform: translateY(-20px);
}

body > main.homepage > div > header > div.about > p, 
body > main.homepage.err > div > header > div > p {
  margin: 0;
  color: var(--text);
  font-size: 35px;
  font-family: 'Rubik';
  font-weight: 400;
  margin-top: 0.5rem;
  padding: 0 0.25rem;
}

body > main.homepage > div > header > div.socials.hide,
body > main.homepage > div > header > div.about.hide {
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}

/* 404 intext */
body > main.homepage.err > div > header > div {
  transform: translateY(0px);
}

/* homepage */
body > main.homepage > div > main {
  width: 150%;
  height: auto;
  aspect-ratio: 7/2;
  margin: 1.5rem 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 7rem;
}

body > main.homepage > div > main > button {
  position: relative;
  width: 12rem;
  aspect-ratio: 5/5;
  background: transparent;
  color: var(--text);
  color: var(--col);
  border-radius: 0.5rem;
  border: solid 2px var(--col);
  box-sizing: border-box;
  transition: 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  transition: border 0s, box-shadow 0.4s ease;
}
body > main.homepage > div > main > button:not(:disabled):before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(40deg, rgba(1,39,78,1) 0%, rgba(25,76,147,1) 0%, rgba(109,101,185,1) 60%, rgba(202,67,167,1) 100%);
  background: var(--col);
  transition: 0.4s ease;
  opacity: 0;
  background: var(--col);
}

body > main.homepage > div > main > button:not(:disabled):hover, body > main.homepage > div > main > button:not(:disabled):focus {
  background: transparent;
  box-shadow: 0 0 150px 9px rgba(202, 67, 167, 1);
  box-shadow: 0 0 150px 9px var(--col);
  border-width: 0px;
  color: var(--text);
}
body > main.homepage > div > main > button:hover:before,
body > main.homepage > div > main > button:focus:before {
  opacity: 1;
}

body > main.homepage > div > main > button:nth-child(1) {
  /* --col: #f02c1e; */
  --col: rgb(42 117 221);
}

body > main.homepage > div > main > button:nth-child(2) {
  /* --col: #35f03f; */
  --col: rgb(140 130 232);
}

body > main.homepage > div > main > button:nth-child(3) {
  /* --col: #3661f0; */
  --col: rgb(230 79 191);
}

body > main.homepage > div > main > button > i {
  font-size: 5.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s ease;
}

body > main.homepage > div > main > button:hover > i, body > main.homepage > div > main > button:focus > i, body > main.homepage > div > main > button:disabled > i {
  font-size: 4.5rem;
  transform: translate(-50%, calc(-50% - 1.5rem));
}

body > main.homepage > div > main > button > span.title {
  font-size: 1.75rem;
  font-family: 'Rubik Mono One';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0rem);
  transition: 0.3s ease-out;
  opacity: 0;
  user-select: none;
}

body > main.homepage > div > main > button:hover > span.title, body > main.homepage > div > main > button:focus > span.title, body > main.homepage > div > main > button:disabled > span.title {
  opacity: 1;
  transform: translate(-50%, -1.75rem);
}

/* 404 button */
body > main.homepage.err > div > main > button, 
body > main.homepage.err > div > main > button {
  cursor: unset;
}
body > main.homepage.err > div > main > button:hover, 
body > main.homepage.err > div > main > button:focus {
  box-shadow: 0 0 150px 9px var(--col);
}
body > main.homepage.err > div > main > button:hover:before, 
body > main.homepage.err > div > main > button:focus:before {
  background: var(--col);
  opacity: 1;
}
body > main.homepage.err > div > main > button:hover i, 
body > main.homepage.err > div > main > button:focus i {
  transform: translate(-50%, -50%);
  font-size: 5.25rem;
}

/* analytics */
body main.analytics {
  background: #44c6f14f;
  height: 100%;
}

body > main.analytics > .content {
  padding: 7rem 5rem 2rem;
  color: var(--text);
  text-align: center;
}

body > main.analytics > .content canvas {
}

/* game page*/
body > main.gamespage > div > main {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  /* gap: 1.5rem; */
}

body > main.gamespage > div > main > section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  justify-content: space-between;
  padding: 3rem 13rem;
  box-sizing: border-box;
  position: relative;
  --theme: #f85656;
  --theme_col: #f2f2f2;
  min-height: 879px;
}
body > main.appspage > div > main > section {
  flex-wrap: wrap;
  flex-direction: column;
}

/* privacy policy / legal notice */
main.legal_notice > div.content,
main.privacy_policy > div.content {
  margin: 10rem 15%;
  box-sizing: border-box;
  color: var(--text);
  font-family: 'Rubik';
}
main.legal_notice > div.content > a.return,
main.privacy_policy > div.content > a.return {
  position: absolute;
  left: 3rem;
  top: 3rem;
  font-size: 1.75rem;
  font-family: 'Rubik';
  text-transform: uppercase;
  font-weight: 400;
}

main.legal_notice > div.content > main > p,
main.privacy_policy > div.content > main > p {
  margin-top: 0;
}

main.legal_notice > div.content > main > h1,
main.privacy_policy > div.content > main > h1 {
  white-space: nowrap;
  overflow-wrap: break-word;
  white-space: break-spaces;
  font-size: 3rem;
  font-weight: 100;
  letter-spacing: 1px;
  text-indent: -5px;
}

main.legal_notice > div.content > main > h2,
main.privacy_policy > div.content > main > h2 {
  margin-bottom: 0rem;
  position: relative;
}

/* appspage */
body > main.appspage > div > main > section > div:not(.bg):not(.gallery) {
  display: flex;
  flex-direction: row;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 2rem;
  position: relative;
}

body > main.appspage > div > main > section > div:not(.bg):not(.gallery) > div.logo {
  width: auto;
  width: 500px;
  margin: 0 2rem;
}

body > main.appspage > div > main > section > div:not(.bg):not(.gallery) > div.info {
  width: 45rem;
  margin-right: 5rem;
}
body > main.appspage > div > main > section > div:not(.bg):not(.gallery) > div.info > h1 {
  display: inline-flex;
  justify-content: space-between;
}

body > main.appspage > div > main > section > div:not(.bg):not(.gallery) > div.info > h1 > i {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  margin-right: 1rem;
  color: var(--theme_col);
}
body > main.appspage > div > main > section > div:not(.bg):not(.gallery)
  a.button {
  --offset: 9.25rem;
}

body > main.appspage > div > main > section > div.gallery {
  width: 80%;
  border-radius: 1rem;
  height: auto;
  z-index: 10;
  overflow: hidden;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-content: space-around;
  flex-direction: row;
  align-items: flex-start;
}

body > main.appspage > div > main > section > div.gallery > div.big {
  width: calc(70% - 0.5rem);
}

body > main.appspage > div > main > section > div.gallery > img.third {
  width: calc(30% - 0.5rem);
  height: auto;
}

body > main.appspage > div > main > section > div.gallery > div.big > img.third, 
body > main.appspage > div > main > section > div.gallery > div.small > img.third {
  width: 100%;
  height: auto;
}

body > main.appspage > div > main > section > div.gallery img {
  border-radius: 0.5rem;
}
body > main.appspage > div > main > section > div.gallery > div.small {
  width: calc(30% - 0.5rem);
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  height: 100%;
}

body > main.appspage > div > main > section > div.gallery img.fourth,
body > main.appspage > div > main > section > div.gallery img.half {
  width: calc(50% - 0.5rem);
}

body > main.appspage > div > main > section > div.gallery img.full {
  width: 100%;
}

/* background */
body > main.appspage > div > main > section > div.bg,
body > main.gamespage > div > main > section > div.bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--theme);
  z-index: 0;
}

body > main.appspage > div > main > section > div.bg > img,
body > main.gamespage > div > main > section > div.bg > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.075;
}

body > main.appspage > div > main > section.barrier > div.bg:before,
body > main.gamespage > div > main > section.barrier > div.bg:before {
  content: '';
  background: repeat;
  background-size: 44px;
  background-image: url(https://sandbox-noah-local.nolis-manager.de/portfolio//images/barrier_sprite.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.125;
}

body > main.appspage > div > main > section.barrier > div.bg:after,
body > main.gamespage > div > main > section.barrier > div.bg:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #00c49a 50%, transparent 100%);
  background: linear-gradient(90deg, transparent 0%, var(--theme) 15%, var(--theme) 85%, transparent 100%);
  width: 100%;
  height: 100%;
}

body > main.appspage > div > main > section.barrier > div.bg > img
body > main.gamespage > div > main > section.barrier > div.bg > img {
  opacity: 0;
  visibility: hidden;
  display: none;
}

body > main.appspage > div > main > section:not(:last-of-type):before,
body > main.gamespage > div > main > section:not(:last-of-type):before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2;
  display: block;
  --size: 10px;
  height: var(--size);
  background-size: var(--size) 100%;
  background-image: linear-gradient(135deg, var(--theme) 25%, transparent 25%), linear-gradient(225deg, var(--theme) 25%, transparent 25%);
  background-position: 0 0;
}

/* swiper */
/* body > main.gamespage > div > main > section > div.swiper {
  width: auto;
  height: auto;
  max-width: 70%;
  min-width: 70%;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border-bottom-right-radius: 0;
}

body > main.gamespage > div > main > section > div.swiper div.wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--text);
  opacity: 0.1;
}

body > main.gamespage > div > main > section > div.swiper div.swiper-pagination {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 2.5rem;
  z-index: 99;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: auto;
  padding: 0 1rem;
  background: hotpink;
}

body > main.gamespage > div > main > section > div.swiper div.swiper-button-prev, 
body > main.gamespage > div > main > section > div.swiper div.swiper-button-next {
  position: absolute;
  left: 0;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 6rem;
  background: #000;
  display: block;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  color: var(--text);
  opacity: 0.25;
  transition: 0.4s ease;
}

body > main.gamespage > div > main > section > div.swiper div.swiper-button-next {
  left: auto;
  right: 0;
  border-radius: 0;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

body > main.gamespage > div > main > section > div.swiper div.swiper-button-prev:after, 
body > main.gamespage > div > main > section > div.swiper div.swiper-button-next:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 900;
}

body > main.gamespage > div > main > section > div.swiper div.swiper-button-prev:hover, 
body > main.gamespage > div > main > section > div.swiper div.swiper-button-next:hover, 
body > main.gamespage > div > main > section > div.swiper div.swiper-button-prev:focus, 
body > main.gamespage > div > main > section > div.swiper div.swiper-button-next:focus {
  opacity: 0.5;
} */


/* logo */
body > main.appspage > div > main > section > div> div.logo,
body > main.gamespage > div > main > section > div.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

body > main.appspage > div > main > section > div> div.logo > img,
body > main.gamespage > div > main > section > div.logo > img {
  object-fit: none;
  user-select: none;
}

/* info */
body > main.appspage > div > main > section > div> div.info,
body > main.gamespage > div > main > section > div.info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text);
  font-family: 'Rubik';
  padding-top: 5rem;
  position: relative;
  z-index: 2;
  min-width: 34rem;
  width: 34rem;
}

h1 {
  font-family: 'Rubik Mono One';
  font-size: 61px;
  margin: 0;
  line-height: 60px;
  color: var(--theme_col);
}

hr {
  background-color: var(--theme_col);
  margin: 0;
  opacity: 0.9;
  height: 1px;
}

div.genre {
  margin: 0;
  padding: 0.125rem 0 0;
  flex-direction: row;
  justify-content: flex-start;
  gap: 2rem;
  text-transform: uppercase;
  color: var(--theme_col);
}

p {
  font-size: 23px;
  color: var(--theme_col);
}

/* play button */
a.button {
  margin-top: 2rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  aspect-ratio: 10/3;
  height: auto;
  background: transparent;
  border-radius: 0.75rem;
  color: var(--theme_col);
  /* 
  border: none;
  backdrop-filter: blur(20px);
  overflow: hidden; 
  */
  border: 2px solid var(--theme_col);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 2.25rem;
  text-transform: uppercase;
  font-family: 'Rubik Mono One';
  box-sizing: border-box;
  --offset: 3.5rem;
  transition: 0.6s ease;
}

a.button:hover, 
a.button:focus {
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 25%);
}

/* a.button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 125%;
  height: 125%;
  background: linear-gradient(40deg,
              rgba(1,39,78,1) 0%,
              rgba(25,76,147,1) 28%,
              rgba(109,101,185,1) 68%,
             rgba(202,67,167,1) 100%);
  z-index: -1;
  opacity: 0.7;
  filter: blur(30px);
} */

a.button > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.6s ease;
}

a.button:hover > span, 
a.button:focus > span {
  left: var(--offset);
  transform: translateY(-50%);
}

a.button > div.icon {
  position: absolute;
  top: 50%;
  right: var(--offset);
  transform: translateY(-50%);
  overflow: hidden;
}

a.button > div.icon > i {
  transform: translateX(-100%);
  transition: 0.6s ease;
  opacity: 0.25;
}

a.button:hover > div.icon > i, 
a.button:focus > div.icon > i {
  transform: translate(0px, 0px);
  opacity: 1;
}

/* footer */
body > main > div > footer {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem;
  font-family: 'Rubik';
  font-size: 1.25rem;
  color: var(--text);
}

body > main > div > footer a {
  color: var(--text);
  text-decoration: none;
}

/* config */
section#Reality-Check {
  --theme: #f85656;
}

section#AI-Too {
  --theme: #0f1e3b;
}

section#Sort-It-Out {
  --theme: #00c49a;
}

section#BlurFrame {
  --theme: #1d212e;
  --theme_col: #aabacf;
}
section#Better-Instagram {
  --theme: #010101;
  --theme_col: #f2f2f2;
}
section#Discord-Blur {
  --theme: #313338;
  --theme_col: #dbdee1;
}
section#Screenshot {
  --theme: #ffffff;
  --theme_col: #020202;
}
section#Instagram-Themes {
  --theme: #005c4b;
  --theme_col: #f2f2f2;
}

/* custom icon */
i.german_flag {
  height: 1.25rem;
  width: auto;
  aspect-ratio: 3/2;
  display: inline-flex;
  flex-direction: column;
  border-radius: 0.25rem;
  overflow: hidden;
  justify-content: space-evenly;
  position: absolute;
  top: 50%;
  margin-left: 0.5rem;
  transform: translateY(-50%);
}

i.german_flag > div:nth-child(1), i.german_flag > div:nth-child(2), i.german_flag > div:nth-child(3) {
  background: red;
  width: 100%;
  height: auto;
  aspect-ratio: 6/2;
  display: block;
}

i.german_flag > div:nth-child(1) {
  background: black;
}

i.german_flag > div:nth-child(3) {
  background: yellow;
}

/* quote */
p.quote {
  position: relative;
  padding: 1rem;
  padding-left: 1rem;
  background-color: #0000006b;
}

p.quote:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  background: #000;
  opacity: 0.5;
}


.slider {
  width: 100%;
  height: 25px;
  margin: 0;
  border: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3px;
  transform: translateY(-10px);
}

.slider > button.segment {
  background: var(--text);
  width: 100%;
  height: 100%;
  opacity: 0.25;
  transition: 0.2s ease;
  border: 0;
  padding: 0;
  border-radius: 0.25rem;
  cursor: pointer;
  position: relative;
  background: transparent;
}
.slider > button.segment:before {
  content: '';
  background: var(--text);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 6px;
  border-radius: 0.25rem;
}

.slider > button.segment.active {
  opacity: 1;
}

.slider > button.segment:hover, 
.slider > button.segment:focus {
  opacity: 0.75;
}

.slider > button.segment.active:hover, 
.slider > button.segment.active:focus {
  opacity: 1;
}

@media screen and (max-width: 1300px) {
  body > main.homepage > div {
    width: 75%;
    box-sizing: border-box;
  }
  
  body > main.homepage > div > main {
    width: 100%;
  }
  
  span.listing {
    gap: 1.25rem;
  }

  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery),
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery) {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
  }
  
  body > main.gamespage > div > main > section > div.logo, 
  body > main.gamespage > div > main > section > div.logo > img,
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery) > div.logo, 
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery) > div.logo > img {
    width: 250px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin: 0;
  }
  
  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) > div.info,
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery) > div.info {
    margin: 0;
  }

  
  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) a.button {
    --offset: 5rem;
  }
  
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery) a.button {
    --offset: 7rem;
  }
}

@media screen and (max-width: 1250px) {
  body > main.gamespage > div > main > section {
    flex-direction: column;
    gap: 1rem;
  }

  body > main.gamespage > div > main > section > div {
    display: flex;
    flex-direction: column !important;
  }

  body > main.gamespage > div > main > section > div > div.logo {
    left: 50%;
    transform: translateX(-50%);
  }
  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery), 
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery) {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    margin: 0;
    padding: 0;
  }

  body > main.gamespage > div > main > section > div > div.info {
    padding-top: 0;
    width: 100% !important;
  }

  body > main.appspage > div > main > section > div:not(.bg):not(.gallery) a.button {
    max-width: 20rem;
    --offset: 5.5rem;
  }
}
@media screen and (max-width: 970px) {
  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery), 
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery) {
    position: relative;
  }
  
  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery), 
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery),
  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) > 
  div.info, body > main.appspage > div > main > section > div:not(.bg):not(.gallery) > div.info {
    min-width: 100%;
    width: 100%;
    overflow-wrap: break-word;
  }
  
  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) > h1,
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery)> h1, 
  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) > div.info > h1,
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery) > div.info > h1 {
    font-size: 2.25rem;
    font-weight: 100;
    overflow-wrap: anywhere;
  }
  
  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) > div.info > h1 > i,
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery) > div.info > h1 > i {
    font-size: 1.75rem;
  }

  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) a.button {
    --offset: 1.25rem;
  }
  
  body > main.appspage > div > main > section > div:not(.bg):not(.gallery) a.button {
    --offset: 2rem;
  }

  body > main.homepage > div {
    width: 80%;
  }
  
  body > main.homepage > div > main > button {
    width: 28%;
  }
}

@media screen and (max-width: 750px) {
  body > main.homepage.err > div > main {
    flex-direction: row;
  }
  body > main.homepage.err > div > main > button {
    width: 27%;
  }
  
  body > main.gamespage > div > main > section {
    padding: 3rem 3rem;
  }
  
  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) a.button {
    transition: 0.2s ease;
    max-width: 16rem;
    min-width: 9rem;
  }

  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) a.button > span {
    transition: 0.2s ease;
  }

  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) a.button:hover,
  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) a.button:focus {
    background-color: var(--theme_col);
    color: var(--theme);
    border: var(--theme);
  }
  a.button:hover > span, a.button:focus > span {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  a.button > div.icon {
    display: none;
    visibility: hidden;
  }

  body > main.homepage > div > header {
    width: 100%;
  }
  
  body > main.homepage > div > header > h1 {
    font-size: 5.5rem;
    text-align: center;
  }
  body > main.homepage.err > div > header > h1 {
    font-size: 4rem;
  }

  body > main.homepage > div > header > div.about > p {
    font-size: 1.75rem;
    width: 100%;
  }
  body > main.homepage.err > div > header > div > p {
    text-align: center;
    font-size: 1.75rem;
  }
  
  span.listing {
    width: 100%;
  }
  
  body > main.homepage > div > main > button > i {
    font-size: 4rem;
  }
  body > main.homepage > div > main > button:hover > i, 
  body > main.homepage > div > main > button:focus > i {
    font-size: 3.75rem;
  }
  
  body > main.homepage > div > main > button > span.title {
    font-size: 1.25rem;
  }
  
  body > main.homepage > div > main > button:hover > span.title, 
  body > main.homepage > div > main > button:focus > span.title {
    transform: translate(-50%, -1.25rem);
  }
}

@media screen and (max-width: 670px) {
  body > main.homepage > div > header > h1 {
    font-size: 4rem;
    letter-spacing: 3px;
  }
  
  body > main.homepage > div > header > div.about > p {
    font-size: 1.35rem;
  }
  
  span.listing {
    gap: 0.5rem;
  }
  
  body > main.homepage > div > main > button > i {
    font-size: 2.5rem;
  }
  
  body > main.homepage > div > main > button:hover > i, 
  body > main.homepage > div > main > button:focus > i {
    font-size: 2.25rem;
  }
  
  body > main.homepage > div > main > button > span.title {
    font-size: 1rem;
  }
  
  body > main > div > footer {
    font-size: 1.2rem;
  }
  
  footer span.listing {
    gap: 0.65rem;
  }
}

@media screen and (max-width: 500px) {
  body > main.homepage > div > header > h1 {
    font-size: 3.5rem;
    transform: translateY(13px);
  }
  
  body > main.homepage > div > header > div.socials > a.item, 
  div.genre > div.item {
    width: 2.5rem;
  }
  
  body > main.homepage > div > header > div.socials > a.item > i, 
  div.genre > div.item > i {
    font-size: 1.75rem;
  }
  
  body > main.homepage > div > header > div.about > p {
    font-size: 1.2rem;
  }
  
  body > main.homepage > div > header {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  
  body > main.homepage > div > main > button:hover > span.title, 
  body > main.homepage > div > main > button:focus > span.title {
    transform: translate(-50%, -0.75rem);
  }
  
  body > main.homepage > div > main > button:hover > i, 
  body > main.homepage > div > main > button:focus > i {
    font-size: 1.75rem;
    transform: translate(-50%, -1.5rem);
  }

  body > main > div > footer {
    font-size: 1rem;
  }

  main.legal_notice > div.content > main > h1, 
  main.privacy_policy > div.content > main > h1 {
    font-size: 1.75rem;
  }
  
  main.legal_notice > div.content > main > h2, 
  main.privacy_policy > div.content > main > h2 {
    font-size: 1.5rem;
  }
  
  main.legal_notice > div.content > main > p, 
  main.privacy_policy > div.content > main > p {
    font-size: 1.25rem;
  }
  body > main.gamespage > div > a.return {
    top: 1rem;
    left: 0.75rem;
    background-color: #0000004a;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    border-radius: 0.5rem;
    width: fit-content;
    aspect-ratio: auto;
  }

  body > main.appspage > div > main > section > div.gallery img.fourth,
  body > main.appspage > div > main > section > div.gallery img.half,
  body > main.appspage > div > main > section > div.gallery,
  body > main.appspage > div > main > section > div.gallery {
    width: 100%;
  }
}

@media screen and (max-width: 440px) {
  body {
    min-width: 300px;
  }
  body > main.homepage > div > header > h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
    line-height: 48px;
    transform: translateY(4px);
  }
  
  body > main.homepage > div > header > div.socials > a.item, 
  div.genre > div.item {
    width: 2rem;
  }
  
  body > main.homepage > div > header > div.socials > a.item > i, 
  div.genre > div.item > i {
    font-size: 1.45rem;
  }
  
  body > main.homepage > div > main {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  body > main.homepage > div > main > button {
    width: 50%;
  }
  
  body > main.homepage > div > header > div.about > p {
    font-size: 1rem;
  }
  
  body > main.homepage > div > header > div.about > p > span.listing > span.dot {
    opacity: 0;
  }
  
  body > main.homepage > div > header > div.about > p > span.listing {
    gap: 0.25rem;
  }


  body > main.gamespage > div > main > section > div:not(.bg):not(.gallery) a.button {
    min-width: 100%;
    border-radius: 0.5rem;
    font-size: 1.65rem;
  }
  

  main.legal_notice > div.content > main > h1,
  main.privacy_policy > div.content > main > h1 {
    font-size: 1.75rem;
  }
  
  main.legal_notice > div.content > main > h2,
  main.privacy_policy > div.content > main > h2 {
    font-size: 1.5rem;
  }
  
  main.legal_notice > div.content > main > p, 
  main.privacy_policy > div.content > main > p {
    font-size: 1.25rem;
  }
  
  main.legal_notice > div.content > a.return, 
  main.privacy_policy > div.content > a.return {
    left: 1rem;
    top: 1rem;
  }
  
  main.legal_notice > div.content,
  main.privacy_policy > div.content {
    margin: 4rem 2rem;
  }
  
  main.legal_notice > div.content > main > h1, 
  main.privacy_policy > div.content > main > h1 {
    font-size: 1.85rem;
    line-height: 27px;
    text-indent: 0px;
    margin-bottom: 3rem;
    margin-top: 4.5rem;
  }
}


div#live {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5rem;
  background: #6441a4;
  color: #f2f2f2;
  font-family: 'Rubik';
  font-size: 1.75rem;
  z-index: 20;
}

div#live > a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: all;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
}

div#live > a > span {
  white-space: nowrap;
}

div#live > a:hover > span, div#live > a:focus > span:nth-child(2) {text-decoration: underline;}