/* @font-face {
  font-family: ;
  src: url () format(woff)
} */

:root {
  --color-1: yellow;
  --color-2: green;
  --color-3: violet;
  --color-4: yellow;
  --color-5: yellow;
}
body {
  background-color: black;
}

.container {
  width: 100vw;
  height: 100vh;
}

html {
  cursor: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" height="30" width="30"><text y="28" font-size="32">🔪</text><path d="M0,2 L0,0 L2,0" fill="red" /></svg>'),
    auto;
}

/*STYLES FOR COLOR CHOOSER*/

#color-chooser {
  position: fixed;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: black;
  border-left: 0.5px solid white;
}
/* save colors */

.save-colors-wrapper {
  margin: 10px;
  color: white;
}
#btn-save-colors {
  text-align: center;
  border: solid 0.5px;
  border-radius: 15%;
  padding: 0.35em 0.5em 0.25em;
  margin-bottom: 10px;
  cursor: pointer;
  background-color: var(--color-1);
}
#saved-colors div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-bottom: 5px;
}
#saved-colors span {
  aspect-ratio: 1/1;
  background: red;
  margin-bottom: 0.5em;
}
#saved-colors i {
  aspect-ratio: 1/1;
  text-align: center;
  cursor: pointer;
}

#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(100vw-120px);
  min-height: 100%;
  width: 1315px;
}

/* STYLING FIRST PAGE */

#visual-1 {
  display: flex;
  flex-direction: row;
  width: 1315px;
  height: 100vh;
}
#visual-1 .visual-color-1 {
  background: var(--color-1);
  width: 1315px;
  height: 100vh;
  animation: mymove1 10s infinite;
}

#visual-1 .visual-color-2 {
  background: var(--color-2);
  width: 1315px;
  height: 100vh;
  animation: mymove1 10s ease 3s infinite;
}

#visual-1 .visual-color-3 {
  background: var(--color-3);
  width: 1315px;
  height: 100vh;
  animation: mymove1 10s ease 6s infinite;
}

#visual-1 .visual-color-4 {
  background: var(--color-4);
  width: 1315px;
  height: 100vh;
  animation: mymove1 10s ease 9s infinite;
}

#visual-1 .visual-color-5 {
  background: var(--color-5);
  width: 1315px;
  height: 100vh;
  animation: mymove1 10s ease 12s infinite;
}

@keyframes mymove1 {
  0% {
    top: 0px;
    left: 0px;
    width: 10%;
    background: var(--color-1);
  }
  25% {
    top: 0px;
    left: 25%;
    width: 30%;
    background: var(--color-2);
  }
  50% {
    top: 0px;
    left: 50%;
    width: 50%;
    background: var(--color-3);
  }
  75% {
    top: 0px;
    left: 75%;
    width: 80%;
    background: var(--color-4);
  }
  100% {
    top: 0px;
    left: 100%;
    width: 100%;
    background: var(--color-5);
  }
}

/* STYLING 'SECOND PAGE' circles*/
#visual-2 {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  height: 100px;
}

#visual-2 .visual-color-1 {
  background: var(--color-1);
  width: 100px;
  height: 100px;
  /* border: 0.5px solid white; */
  border-radius: 50px;
}

#visual-2 .visual-color-2 {
  background: var(--color-2);
  width: 100px;
  height: 100px;
  /* border: 0.5px solid white; */
  border-radius: 50px;
}

#visual-2 .visual-color-3 {
  background: var(--color-3);
  width: 100px;
  height: 100px;
  /* border: 0.5px solid white; */
  border-radius: 50px;
}

#visual-2 .visual-color-4 {
  background: var(--color-4);
  width: 100px;
  height: 100px;
  /* border: 0.5px solid white; */
  border-radius: 50px;
}

#visual-2 .visual-color-5 {
  background: var(--color-5);
  width: 100px;
  height: 100px;
  /* border: 0.5px solid white; */
  border-radius: 50px;
}

/* STYLING THIRD PAGE small animation */

#visual-3 {
  display: flex;
  flex-direction: row;
  width: 1315px;
  height: 50px;
}
#visual-3 .visual-color-1 {
  background: var(--color-1);
  width: 1315px;
  height: 50px;
  animation: mymove1 10s infinite;
}

#visual-3 .visual-color-2 {
  background: var(--color-2);
  width: 1315px;
  height: 50px;
  animation: mymove1 10s ease 3s infinite;
}

#visual-3 .visual-color-3 {
  background: var(--color-3);
  width: 1315px;
  height: 50px;
  animation: mymove1 10s ease 6s infinite;
}

#visual-3 .visual-color-4 {
  background: var(--color-4);
  width: 1315px;
  height: 50px;
  animation: mymove1 10s ease 9s infinite;
}

#visual-3 .visual-color-5 {
  background: var(--color-5);
  width: 1315px;
  height: 50px;
  animation: mymove1 10s ease 12s infinite;
}

@keyframes mymove1 {
  0% {
    top: 0px;
    left: 0px;
    width: 10%;
    background: var(--color-1);
  }
  25% {
    top: 0px;
    left: 25%;
    width: 30%;
    background: var(--color-2);
  }
  50% {
    top: 0px;
    left: 50%;
    width: 50%;
    background: var(--color-3);
  }
  75% {
    top: 0px;
    left: 75%;
    width: 80%;
    background: var(--color-4);
  }
  100% {
    top: 0px;
    left: 100%;
    width: 100%;
    background: var(--color-5);
  }
}

/* STYLING 'FOURTH PAGE' salate palette */

#visual-4 {
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: sans-serif;
  justify-content: center;
  font-size: 7vw;
}

.gradient {
  background: linal-gradient(
    to right,
    var(--color-1),
    var(--color-2),
    var(--color-3),
    var(--color-4),
    var(--color-5)
  );
  background-size: 200% auto;

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: mymove2 8s infinite;
}

@keyframes mymove2 {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}

/* STYLING 'FIFTH PAGE' svg1 */

#svg-1 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  width: 60%;
}

.cls-1 {
  fill: var(--color-1);
  stroke: none;
}

.cls-2 {
  fill: var(--color-2);
  stroke: none;
}

.cls-3 {
  fill: var(--color-3);
  stroke: none;
}

.cls-4 {
  fill: var(--color-4);
  stroke: none;
}

.cls-5 {
  fill: black;
  stroke: none;
}

.cls-6 {
  fill: var(--color-5);
  stroke: none;
}

/* 'SIXTH PAGE' ingredients */
#visual-6 {
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: sans-serif;
  justify-content: center;
  font-size: 7vw;
}

/* SEVENT PAGE SVG2 */
#svg-2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  padding-top: 50px;
  width: 95%;
}

/* EIGHT PAGE orange */
/* #visual-8 > img {

  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  background: radial-gradient(
    var(--color-1) 0%,
    var(--color-2) 10%,
    var(--color-3) 15%,
    var(--color-4) 20%,
    var(--color-5) 30%
  );
}

/* test chop */
.text {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: sans-serif;
  justify-content: center;
  color: var(--color-1);
  font-size: 1vw;
}
.wrapperchop {
  display: flex;
  flex-direction: row;
  padding-top: 20px;
  padding-bottom: 50px;
  width: calc(100vw-120px);
}
#visual-11 {
  width: 20%;
  background-color: var(--color-1);
}
#visual-12 {
  width: 20%;
  background-color: var(--color-2);
}
#visual-13 {
  width: 20%;
  background-color: var(--color-3);
}
#visual-14 {
  width: 20%;
  background-color: var(--color-4);
}
#visual-15 {
  width: 20%;
  background-color: var(--color-5);
}
/* test MIX */

#mix {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: sans-serif;
  justify-content: center;
  font-size: 9vw;
  background: linear-gradient(
    to right,
    var(--color-1),
    var(--color-2),
    var(--color-3),
    var(--color-4),
    var(--color-5)
  );
  background-size: 200% auto;

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wiggle 2s linear infinite, mymove2 8s infinite;
}

@keyframes wiggle {
  0%,
  7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%,
  100% {
    transform: rotateZ(0);
  }
}

/* NINTH PAGE bon appetit */
#visual-9 {
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: sans-serif;
  justify-content: center;
  font-size: 7vw;
}

.gradient {
  background: linear-gradient(
    to left,
    var(--color-1),
    var(--color-2),
    var(--color-3),
    var(--color-4),
    var(--color-5)
  );
  background-size: 200% auto;

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: mymove3 8s infinite;
}

@keyframes mymove3 {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}
/* TENTH PAGE salad bowls */

#visual-10 {
  padding-top: 20px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: row;
  width: calc(100vw - 120px);
}
#visual-10 .visual-color-1 {
  background-image: url(../salad_bowl.jpg);
  background-size: cover;
  background-blend-mode: difference;
  width: 20%;
  height: 250px;
  background-color: var(--color-1);
}
#visual-10 .visual-color-2 {
  background-image: url(../salad_bowl.jpg);
  background-size: cover;
  background-blend-mode: difference;
  width: 20%;
  height: 250px;
  background-color: var(--color-2);
}
#visual-10 .visual-color-3 {
  background-image: url(../salad_bowl.jpg);
  background-size: cover;
  background-blend-mode: difference;
  width: 20%;
  height: 250px;
  background-color: var(--color-3);
}
#visual-10 .visual-color-4 {
  background-image: url(../salad_bowl.jpg);
  background-size: cover;
  background-blend-mode: difference;
  width: 20%;
  height: 250px;
  background-color: var(--color-4);
}
#visual-10 .visual-color-5 {
  background-image: url(../salad_bowl.jpg);
  background-size: cover;
  background-blend-mode: difference;
  width: 20%;
  height: 250px;
  background-color: var(--color-5);
}

#visual-18 {
  display: flex;
  flex-direction: row;
  width: 1315px;
  height: 10px;
}
#visual-18 .visual-color-1 {
  background: var(--color-1);
  width: 1315px;
  height: 10px;
  animation: mymove1 10s infinite;
}

#visual-18 .visual-color-2 {
  background: var(--color-2);
  width: 1315px;
  height: 10px;
  animation: mymove1 10s ease 3s infinite;
}

#visual-18 .visual-color-3 {
  background: var(--color-3);
  width: 1315px;
  height: 10px;
  animation: mymove1 10s ease 6s infinite;
}

#visual-18 .visual-color-4 {
  background: var(--color-4);
  width: 1315px;
  height: 10px;
  animation: mymove1 10s ease 9s infinite;
}

#visual-18 .visual-color-5 {
  background: var(--color-5);
  width: 1315px;
  height: 10px;
  animation: mymove1 10s ease 12s infinite;
}
