@font-face {
	font-family: "PP Monument Extended";
	src: url(../links/PPMonumentExtended-Bold.woff) format("woff");
}
:root {
	--color-1: yellow;
	--color-2: yellow;
	--color-3: yellow;
	--color-4: yellow;
}
.container {
	width: 100vw;
	/* height: 80vh; */
	/* background: var(--color-1); */
}
body {
	background: white;
	/* overflow: hidden; */
	/* cursor: url(../links/flower.png), auto; */
}

/* STYLES FOR COLOR CHOOSER */
#color-chooser {
	position: fixed;
	top: 0;
	right: 0;
	width: 120px;
	height: 100%;
	background: white;
	border-left: 1px solid black;
}
#palette {
	padding: 10px;
}
#palette .color {
	margin-bottom: 1em;
	text-align: center;
}
input[type="color"] {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	border: 0;
	outline: 0;
	padding: 0;
	box-shadow: 0;
	background-color: inherit;
}
/* STYLES FOR VISUALS */
#visuals {
	width: calc(100% - 120px);
	min-height: 100%;
}

.visual-color-1 {
	background: var(--color-1);
	width: 100%;
	height: 75px;
	/* margin-top: 20px;
  margin-bottom: 20px; */
}
.visual-color-2 {
	background: var(--color-2);
	width: 100%;
	height: 75px;
	/* margin-top: 20px;
  margin-bottom: 20px; */
}
.visual-color-3 {
	background: var(--color-3);
	width: 100%;
	height: 75px;
	/* margin-top: 20px;
  margin-bottom: 20px; */
}
.visual-color-4 {
	background: var(--color-4);
	width: 100%;
	height: 75px;
	/* margin-top: 20px; */
	margin-bottom: 20px;
}

/* !!!!!TYPEWRITER!!!!! */

.box-type {
	background: var(--color-1);
	padding-top: 3em;
	padding-bottom: 7em;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.typewriter h1 {
	color: var(--color-2);
	font-family: "PP Monument Extended";
	font-size: 2em;
	overflow: hidden;
	border-right: 0.15em solid var(--color-3);
	white-space: nowrap;
	margin: 0 auto;
	letter-spacing: 0.15em;
	animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

/* The typewriter cursor effect */
@keyframes blink-caret {
	from,
	to {
		border-color: transparent;
	}
	50% {
		border-color: var(--color-3);
	}
}

/* !!!!!LINE ANIMATION!!!!! */

#line-animation-1 div {
	width: 100%;
	height: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.line-animation-color-1 {
	background: var(--color-1);
	margin-left: auto;
	animation: lines-1 2s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-delay: 0s;
	animation-direction: alternate;
}
@keyframes lines-1 {
	0% {
		width: 0%;
		height: 5px;
	}
	100% {
		width: 100%;
		height: 5px;
	}
}
.line-animation-color-2 {
	background: var(--color-2);
	animation: lines-1 2s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-delay: 0s;
	animation-direction: alternate;
}
@keyframes lines-2 {
	0% {
		width: 0%;
		height: 5px;
	}
	100% {
		width: 100%;
		height: 5px;
	}
}
.line-animation-color-3 {
	background: var(--color-3);
	margin-left: auto;
	animation: lines-3 2s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
@keyframes lines-3 {
	0% {
		width: 0%;
		height: 5px;
	}
	100% {
		width: 100%;
		height: 5px;
	}
}

.line-animation-color-4 {
	background: var(--color-4);
	animation: lines-4 2s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
@keyframes lines-4 {
	0% {
		width: 0%;
		height: 5px;
	}
	100% {
		width: 100%;
		height: 5px;
	}
}

/* !!!PACMAN!!! */
.pacman-wrapper {
	/* border-bottom: solid 5px var(--color-2);
  border-top: solid 5px var(--color-2); */
	overflow-x: hidden;
	position: relative;
	padding: 80px 20px 142px;
	background-color: var(--color-4);
	margin-top: 20px;
	height: 160px;
}

.pacman {
	margin: 20px 10px;
}

.pacman-top {
	background-color: var(--color-3);
	height: 100px;
	width: 200px;
	border-radius: 100px 100px 0 0;
	animation: spin1 0.5s infinite linear;
	display: none;
}

.pacman-bottom {
	background-color: var(--color-3);
	height: 100px;
	width: 200px;
	border-radius: 0 0 100px 100px;
	animation: spin2 0.5s infinite linear;
	display: none;
}

.feed {
	/* margin-top: -185px; */
	margin-left: 15px;
	width: 45px;
	height: 45px;
	border-radius: 100%;
	/* border: 3px solid white; */
	-moz-animation: eat 1s linear 0s infinite;
	-webkit-animation: eat 1s linear 0s infinite;
	animation: eat 1s linear 0s infinite;
}

/* Animation*/

@keyframes spin1 {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(-35deg);
	}
}
@keyframes spin2 {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(35deg);
	}
}

@-moz-keyframes spin1 {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(-35deg);
	}
}
@-moz-keyframes spin2 {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(35deg);
	}
}

@-webkit-keyframes spin1 {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(-35deg);
	}
}
@-webkit-keyframes spin2 {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(35deg);
	}
}

@keyframes eat {
	0% {
		box-shadow: 100px 65px 0 0 var(--color-1), 300px 65px 0 0 var(--color-1),
			500px 65px 0 0 var(--color-1), 700px 65px 0 0 var(--color-1),
			900px 65px 0 0 var(--color-1), 1100px 65px 0 0 var(--color-1),
			1300px 65px 0 0 var(--color-1);
	}

	100% {
		box-shadow: 0px 65px 0 0 var(--color-1), 100px 65px 0 0 var(--color-1),
			300px 65px 0 0 var(--color-1), 500px 65px 0 0 var(--color-1),
			700px 65px 0 0 var(--color-1), 900px 65px 0 0 var(--color-1),
			1100px 65px 0 0 var(--color-1);
	}
}

@-moz-keyframes eat {
	0% {
		box-shadow: 100px 65px 0 0 var(--color-1), 300px 65px 0 0 var(--color-1),
			500px 65px 0 0 var(--color-1), 700px 65px 0 0 var(--color-1),
			900px 65px 0 0 var(--color-1), 1100px 65px 0 0 var(--color-1),
			1300px 65px 0 0 var(--color-1);
	}

	100% {
		box-shadow: 0px 65px 0 0 var(--color-1), 100px 65px 0 0 var(--color-1),
			300px 65px 0 0 var(--color-1), 500px 65px 0 0 var(--color-1),
			700px 65px 0 0 var(--color-1), 900px 65px 0 0 var(--color-1),
			1100px 65px 0 0 var(--color-1);
	}
}

@-webkit-keyframes eat {
	0% {
		box-shadow: 100px 65px 0 0 var(--color-1), 300px 65px 0 0 var(--color-1),
			500px 65px 0 0 var(--color-1), 700px 65px 0 0 var(--color-1),
			900px 65px 0 0 var(--color-1), 1100px 65px 0 0 var(--color-1),
			1300px 65px 0 0 var(--color-1);
	}

	100% {
		box-shadow: 0px 65px 0 0 var(--color-1), 100px 65px 0 0 var(--color-1),
			300px 65px 0 0 var(--color-1), 500px 65px 0 0 var(--color-1),
			700px 65px 0 0 var(--color-1), 900px 65px 0 0 var(--color-1),
			1100px 65px 0 0 var(--color-1);
	}
}

/* !!!!TEXT!!!! */

.text {
	background-color: var(--color-1);
	height: 300px;
	margin-top: 20px;
	padding: 40px;
}
p {
	font-family: PP Monument Extended;
	font-size: 7rem;
	letter-spacing: 0.5rem;
	position: absolute;
	margin-top: 5%;
	margin-left: 8%;
	text-shadow: 7px 7px var(--color-2), 18px 18px var(--color-3);
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 4px;
	-webkit-text-stroke-color: var(--color-4);
}

/* !!!!MOVING-SHAPES!!!! */

.moving-shapes {
	height: 100vh;
	width: 100vw;
	display: grid;
	place-items: center;
	background-color: var(--color-2);
	overflow: hidden;
	margin-top: 20px;
}

#wrapper {
	aspect-ratio: 1.618;
	width: 90vmin;
	position: relative;
}

#wrapper > .shape {
	height: 30%;
	width: 30%;
	position: absolute;
	transition: left, top, height, width, border-radius;
	transition-duration: 750ms;
	transition-timing-function: ease-in-out;
}

#wrapper > .shape:nth-child(1) {
	background-color: var(--color-4);
	z-index: 2;
}

#wrapper > .shape:nth-child(2) {
	background-color: var(--color-1);
	z-index: 2;
}

#wrapper > .shape:nth-child(3) {
	background-color: var(--color-3);
	z-index: 1;
}

#wrapper > .shape:nth-child(4) {
	background-color: var(--color-4);
	z-index: 2;
}

#wrapper > .shape:nth-child(5) {
	background-color: var(--color-1);
	z-index: 2;
}

#wrapper > .shape:nth-child(6) {
	background-color: var(--color-4);
	z-index: 2;
}

#wrapper > .shape:nth-child(7) {
	background-color: var(--color-3);
	z-index: 2;
}

#wrapper[data-configuration="1"] > .shape:nth-child(1) {
	left: 0%;
	top: 0%;
	height: 50%;
	width: 20%;
}

#wrapper[data-configuration="1"] > .shape:nth-child(2) {
	left: 20%;
	top: 0%;
	height: 50%;
	width: 30%;
}

#wrapper[data-configuration="1"] > .shape:nth-child(3) {
	left: 50%;
	top: 0%;
	height: 100%;
	width: 50%;
}

#wrapper[data-configuration="1"] > .shape:nth-child(4) {
	left: 0%;
	top: 50%;
	height: 50%;
	width: 30%;
}

#wrapper[data-configuration="1"] > .shape:nth-child(5) {
	left: 30%;
	top: 50%;
	height: 50%;
	width: 20%;
}

#wrapper[data-configuration="1"] > .shape:nth-child(6) {
	left: 70%;
	top: 50%;
	height: 50%;
	width: 30%;
}

#wrapper[data-configuration="1"] > .shape:nth-child(7) {
	left: 85%;
	top: 75%;
	height: 25%;
	width: 15%;
}

#wrapper[data-configuration="2"] > .shape:nth-child(1) {
	left: 25%;
	top: 20%;
	height: 80%;
	width: 15%;
}

#wrapper[data-configuration="2"] > .shape:nth-child(2) {
	left: 40%;
	top: 20%;
	height: 50%;
	width: 10%;
}

#wrapper[data-configuration="2"] > .shape:nth-child(3) {
	left: 50%;
	top: 0%;
	height: 100%;
	width: 25%;
}

#wrapper[data-configuration="2"] > .shape:nth-child(4) {
	left: 0%;
	top: 0%;
	height: 50%;
	width: 10%;
}

#wrapper[data-configuration="2"] > .shape:nth-child(5) {
	left: 10%;
	top: 0%;
	height: 70%;
	width: 15%;
}

#wrapper[data-configuration="2"] > .shape:nth-child(6) {
	left: 75%;
	top: 10%;
	height: 80%;
	width: 15%;
}

#wrapper[data-configuration="2"] > .shape:nth-child(7) {
	left: 90%;
	top: 40%;
	height: 60%;
	width: 10%;
}

#wrapper[data-configuration="3"] > .shape:nth-child(1) {
	left: 0%;
	top: 16.5%;
	height: 32%;
	width: 20%;
}

#wrapper[data-configuration="3"] > .shape:nth-child(2) {
	left: 20%;
	top: 2.7%;
	height: 55%;
	width: 34%;
}

#wrapper[data-configuration="3"] > .shape:nth-child(3) {
	left: 38%;
	top: 0%;
	height: 100%;
	width: 62%;
}

#wrapper[data-configuration="3"] > .shape:nth-child(4) {
	left: 0%;
	top: 47.3%;
	height: 55%;
	width: 34%;
}

#wrapper[data-configuration="3"] > .shape:nth-child(5) {
	left: 34%;
	top: 56.4%;
	height: 32%;
	width: 20%;
}

#wrapper[data-configuration="3"] > .shape:nth-child(6) {
	left: 66%;
	top: 45%;
	height: 55%;
	width: 34%;
}

#wrapper[data-configuration="3"] > .shape:nth-child(7) {
	left: 80%;
	top: 68%;
	height: 32%;
	width: 20%;
}

#wrapper[data-roundness="1"] > .shape {
	border-radius: 6rem;
}

#wrapper[data-roundness="2"] > .shape {
	border-radius: 0rem;
}

#wrapper[data-roundness="3"] > .shape {
	border-radius: 30rem;
}

#wrapper[data-roundness="4"] > .shape:nth-child(1) {
	border-bottom-left-radius: 10rem;
}

#wrapper[data-roundness="4"] > .shape:nth-child(2) {
	border-radius: 20rem;
}

#wrapper[data-roundness="4"] > .shape:nth-child(3) {
	border-top-right-radius: 12rem;
}

#wrapper[data-roundness="4"] > .shape:nth-child(4) {
	border-top-right-radius: 10rem;
	border-bottom-right-radius: 10rem;
}

#wrapper[data-roundness="4"] > .shape:nth-child(5) {
	border-bottom-left-radius: 10rem;
}

#wrapper[data-roundness="4"] > .shape:nth-child(6) {
	border-top-left-radius: 16rem;
}

#wrapper[data-roundness="4"] > .shape:nth-child(7) {
	border-top-left-radius: 10rem;
}
#farbe1 {
	fill: var(--color-1);
}
#farbe2 {
	fill: var(--color-2);
}
.Yoga {
	background: var(--color-4);
	display: flex;
	justify-content: center;
	padding: 30px;
	margin-top: 20px;
}
.cls-1 {
	width: 40%;
}
.text-animation2 {
	height: 100%;
	font-weight: 800;
	margin: 0;
	padding: 0;
	background: var(--color-1);
	margin-top: 20px;
}

.container {
	display: flex;
	/*   border:1px solid red; */
	height: 100%;
	align-items: center;
}

svg {
	display: block;
	font: 10.5em "Montserrat";
	width: 2000px;
	height: 300px;
	margin: 0 auto;
}

.text-copy {
	fill: none;
	stroke: white;
	stroke-dasharray: 6% 29%;
	stroke-width: 5px;
	stroke-dashoffset: 0%;
	animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1) {
	stroke: var(--color-2);
	animation-delay: -1;
}

.text-copy:nth-child(2) {
	stroke: var(--color-3);
	animation-delay: -2s;
}

.text-copy:nth-child(3) {
	stroke: var(--color-3);
	animation-delay: -3s;
}

.text-copy:nth-child(4) {
	stroke: var(--color-4);
	animation-delay: -4s;
}

.text-copy:nth-child(5) {
	stroke: var(--color-2);
	animation-delay: -5s;
}

@keyframes stroke-offset {
	100% {
		stroke-dashoffset: -35%;
	}
}

#PacMan-moving {
	display: block;
	position: fixed;
	/* top: 0;
  left: 0; */
	z-index: 2;
	border-radius: 50%;
	transform-origin: center;
}
.pacman2 {
}

.pacman2-top {
	background-color: var(--color-3);
	height: 100px;
	width: 200px;
	border-radius: 100px 100px 0 0;
	animation: spin1 0.5s infinite linear;
}

.pacman2-bottom {
	background-color: var(--color-3);
	height: 100px;
	width: 200px;
	border-radius: 0 0 100px 100px;

	animation: spin2 0.5s infinite linear;
}
#points {
	position: fixed;
	top: 110px;
	left: 43%;
	background-color: var(--color-1);
	border: 5px solid white;
	padding: 1em;
	color: var(--color-2);
	z-index: 5;
	font-family: PP Monument Extended;
}
