/* overall */
@font-face {
  font-family: lucida;
  src: url("fonts/LucidaBrightDemiBold.ttf");
}
@font-face {
  font-family: "aeonis";
  src: url("fonts/AeonisLTPro-Regular.otf");
}

@font-face {
  font-family: "bold";
  src: url("fonts/AeonisLTPro-Bold.otf");
}

strong{font-family: "bold";}

:root {
  --red: hsl(353, 96%, 42%);
  --darker: hsl(353, 96%, 22%);
  --logoSize: 250;
}


html {
  overflow-y:scroll;
}

a{all:unset; cursor: pointer; transition: color .3s;}
a:hover{color:var(--darker)}

h1{font-family: "bold"; font-size:calc(1rem + 1.8vw);}
h2,h3{margin: 0;padding: 0; font-size:calc(.8rem + .5vw);}
h3{font-family: "bold";font-size:calc(1rem + .5vw); text-align: center;}
p{line-height: 1.3rem;}

body,
html {
  position: relative;
  /* scroll-behavior: smooth; */
  margin: 0;
  padding: 0;

  background: linear-gradient(0deg, var(--darker) 0%, var(--red) 100%);

  font-family: "aeonis";
  font-feature-settings: "salt";
  color: white;
}
.fadeover{ width:100%;height:100%;left:0;top:0; position: fixed; 
  background: linear-gradient(0deg, var(--darker) 0%, var(--red) 100%);

}
* {
  box-sizing: border-box;
}

button {
  all: unset;
  color: var(--darker);
  background-color: white;
  padding: 0.7rem 2rem 0.5rem 2rem;
  border-radius: 100px;
  text-transform: uppercase;
  font-size: 1.2rem;
  cursor: pointer;
  transition: border 0.5s, background 0.5s, color 0.5s;
  border: 1px solid transparent;
}

button:hover {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}



.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  left: 0;top: 0;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.top {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content {
  padding-top: 3vw;
  flex-grow: 1;
  position: relative;
  width: 100%;
  display:flex;
  /* align-items:center;  */
  justify-content:center
}
.hLogo {
  width: 150px;
  background: white;
  box-shadow: 0 3px 20px var(--darker);
}

.footer {
  height: 4rem;
  background: var(--red);
  width: 100%;
}

/* startpage */
.startpage *:not(.hand) {
  text-align: center;
}
.startpage {
  width: 100%;
  max-width: 800px;
  padding: 2rem;
}

.startBtn{margin: 12rem 0rem;}

/* gamePage */

.gameScreen{width: 100%;
 
  gap:2rem;
  padding: 2rem;
/* justify-content: space-around; */
}

.gameScreen h1{width:100%; text-align: center;}
.form{width: 100%; margin-bottom: 6rem; max-width: 300px;}
form{display: flex;flex-direction: column; gap: 1rem;}
form button{width: fit-content;}
input,select{padding: 0.7rem; border-radius: 10px; border:none; outline: none; background-color: var(--darker); color:white}
select {
	appearance: none;
  width: max-content;
}
input::placeholder{color: white;}
input:focus{background-color: white; color:var(--darker)}
input:focus::placeholder{color: grey;}
label p{margin: 0;padding: 0;}
.agbs,.newsletter{display: flex; justify-content: flex-start; gap:1rem}

.msg{max-width: 700px;}
/* hands */
.hand {
  width: 200px;
  height: 200px;
  position: relative;
  /* aspect-ratio: 1/1; */
}

.hA {
  transform-origin: bottom left;
}
.hB {
  transform-origin: bottom left;
}
.hSound {
  --clip: 0;
  clip-path: circle(calc(var(--clip) * 1%));
}
.hand img {
  position: absolute;
}

/* logo */

.logo {
  width: calc(var(--logoSize) * 1px);
  height: calc(var(--logoSize) * 1px);
  /* aspect-ratio: 1/1; */
  position: relative;
}
.logo img,
.logo svg {
  width: 100%;
}
.logo > div {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.logo .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  height: 90%;
  left: 0;
  top: 0;
}
.number h1 {
  text-align: center;
  color: white;
  font-family: lucida;
  font-size: calc(var(--logoSize) * 0.4px);
  letter-spacing: -8px;
}
#kreis {
  fill: url("#myGradient");
}

.handscontainer{
 
  width:100%;height:100%;left:0;top:0; position: absolute; overflow: hidden;}
.hands{width:150%;height:100%;left:0;top:0; position: absolute; 
  left:50%; transform: translateX(-50%);
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr; 
 
  
  /* grid-template-areas: 
    ". . handsfree handsfree handsfree . ."
    ". . handsfree handsfree handsfree . ."
    ". . handsfree handsfree handsfree . ."
    ". . handsfree handsfree handsfree . ."
    ". . handsfree handsfree handsfree . ."
    ". . handsfree handsfree handsfree . ."
    ". . . . . . .";  */
}

.teil{text-decoration: underline;}
.teil:hover{text-decoration: none; color:white}

@media (max-width:900px) {
  .hands{
width: 120%;
    display: grid; 
    grid-template-columns: 1fr  1fr 1fr; 


    /* grid-template-areas: 
      ". handsfree  ."
      ". handsfree  ."
      ". handsfree  ."
      ". handsfree  ."
      ". handsfree  .";  */


  }

  .hands .hand{width: 120px;}
}

/* preise */

.preise{width: 100%;position: relative; }
.preis{width:100%;height:auto;left:0;top:0; padding: 0rem 0rem 7rem 0rem;}
.preis img{width:100%; height: 100%; object-fit: 100%; object-position: center; margin-top: 6rem;
   background:radial-gradient( hsl(353, 96%, 42%,.5), hsl(353, 96%, 42%,0) 70%);
  }
.preis p{font-size: 1.3rem;}


.scrollArrow{position: absolute; top:80vh; left:50%; transform:translateX(-50%);width: 30px;height: 30px; color:white;text-align: center;}

.footer{display:flex;align-items:center; justify-content:center; gap: 2rem;}

.pageMenu{display: flex;gap:2rem; cursor: pointer; width: 100%; flex-wrap: wrap; justify-content: center;}
.pageMenu img{width: 280px; transition: transform .5s;}
.pageMenu img:hover{transform: scale(1.1);}

.submited{pointer-events: none; opacity: .5;}