:root {
  --skill-icon-translate-size: 200px;
  --skill-icon-translate-size-inverted: -200px;
}
html {
  scrollbar-width: none;
}
@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/LibreBaskerville-Bold.ttf");
  font-weight: bolder;
  font-display: swap;
}
@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/LibreBaskerville-Regular.ttf");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("../fonts/SpaceMono-Bold.ttf");
  font-weight: bolder;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("../fonts/SpaceMono-Regular.ttf");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Liberation Mono";
  src: url("../fonts/LiberationMono-Bold.ttf");
  font-weight: bolder;
  font-display: swap;
}
@font-face {
  font-family: "Liberation Mono";
  src: url("../fonts/LiberationMono-Regular.ttf");
  font-weight: normal;
  font-display: swap;
}

.moving {
  will-change: transform;
  transform: translateZ(0);
}

body {
  /*font-family: "Liberation Mono", monospace;*/
  font-family: "Liberation Mono", monospace;
  background-color: #acacac;
  color: #000;
  box-sizing: border-box;
}

.colorized {
  color: #ffccff;
}
.fcolorized {
  color: #fff;
}
.shadowed {
  text-shadow: #ffccff 0 0 3px;
}
/*.shadowedGlitch {
  animation: shadowGlitch linear 3s infinite;
  transition: none;
}
@keyframes shadowGlitch {
  0%,
  90% {
    text-shadow: #ffccff 0 0 3px;
  }
  91% {
    text-shadow: #ffccff 6px 0 0;
  }
  99% {
    text-shadow: #ffccff 6px 0 0;
  }
  100% {
    text-shadow: #ffccff 0 0 3px;
  }
}*/

#contentt {
  display: block;
  width: 100%;
  min-height: 100lvh;
}
.section {
  display: block;
  position: relative;
  min-height: 80lvh;
  padding: 10vh 5%;
  margin: 0 auto;
  align-content: center;
}
.sectionHelpBox {
  display: block;
  height: 50px;
  width: 80%;
  margin: 5% auto;
  align-content: center;
}
.sectionHelpTexts {
  display: block;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  float: left;
  /*animation: flickerCustom 2s linear infinite;*/
}
.sectionHelpSeparator {
  display: block;
  border-bottom: 2px dotted #ffccff;
  width: 30%;
  float: left;
  margin-top: 5px;
  /*animation: flickerCustom 2s linear infinite;*/
}
/*
.sectionHelpTexts::after {
  content: "";
  display: inline;
  float: right;
  border-bottom: 1px dotted #ffccff;
  width: 50%;
  height: 1px;
}*/
/*.section:not(#vysuel)::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #ffccff;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50px);
}*/
#vysuel {
  pointer-events: none;
}
#scrollHelpAscii {
  display: block;
  position: fixed;
  font-size: 1.3rem;
  opacity: 0;
  padding: 5px;
  color: #ffccff;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  z-index: 10;
  transition: opacity 250ms linear;
}
#scrollHelpAscii.show {
  opacity: 1;
}
/*TERMINAL*/
#dev {
  padding: 0;
}
#terminal {
  display: block;
  width: 100%;
  min-height: 80vh;
  background-color: rgba(0, 0, 0, 1);
  /*border-radius: 5px;*/
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  transition: all ease-out 400ms;
  overflow: hidden;
}
#terminalContent {
  display: block;
  position: relative;
  width: 90%;
  height: 100%;
  padding: 5%;
}
#terminalContent::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 6px;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(
      90deg,
      rgba(255, 0, 0, 0.06),
      rgba(0, 255, 0, 0.02),
      rgba(0, 0, 255, 0.06)
    );
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  opacity: 0.5;
  /*animation: flicker 0.15s infinite;*/
}
#terminal:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 25px;
}
#terminalToolBar {
  width: 100%;
  height: 40px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #ffccff;
  padding: 10px 0;
}
#terminalToolBar:after {
  content: "";
  width: 60%;
  height: 1.5px;
  display: block;
  /*background-color: #ffccff;*/
  border-bottom: 2px dotted #ffccff;
  margin: 0 auto;
}
#terminalToolBarTitle {
  width: 100%;
  height: 100%;
  align-content: center;
  text-align: center;
}
#terminalAsciiTitle {
  font-size: 2vw;
  margin-top: 50px;
  text-align: center;
}
#terminalAsciiSubTitle {
  text-align: center;
  font-size: 20%;
  margin-bottom: 100px;
}
#terminalAbout {
  width: 90%;
  margin: 5% auto;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.3rem;
}
#terminalInfos {
  width: 90%;
  margin: 5% auto;
  text-transform: uppercase;
  line-height: 1.2rem;
}
.terminalInfosLink {
  background-color: #ffccff;
  padding: 0 3px;
  width: fit-content;
  color: #000;
}
#terminalSeparator {
  width: 90%;
  margin: 5% auto;
}
#vectoimPicto {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -150px;
  margin-top: -130px;
  opacity: 1;
  width: 300px;
  transition: all ease-in-out 400ms;
  transform: translate(-10px, -25px);
  pointer-events: none;
  /*animation: flicker 0.15s infinite;*/
}
.terminalContentBox {
  display: block;
  position: relative;
  width: 80%;
  padding: 5%;
  margin: 10% auto;
  min-height: 100px;
  /*border: 1px dotted #ffccff;*/
  border-left: 1px dotted #ffccff;
  /*border-bottom: 1px dotted #ffccff;*/
}
.terminalContentBox::before {
  content: "";
  width: 20px;
  height: 20px;
  border-right: 1px dotted #ffccff;
  border-top: 1px dotted #ffccff;
  position: absolute;
  top: 0;
  right: 0;
  animation: flickerElement1 linear infinite 5s 200ms;
}
.terminalContentBox::after {
  content: "";
  width: 20px;
  height: 20px;
  border-right: 1px dotted #ffccff;
  border-bottom: 1px dotted #ffccff;
  position: absolute;
  bottom: 0;
  right: 0;
  animation: flickerElement1 linear infinite 5s 100ms;
}
.terminalContentBox:last-child {
  min-width: 50vw;
  min-height: 50vh;
}
#skillsList {
  line-height: 1.5;
  list-style-type: none;
  color: #fff;
}
#terminalSkills {
  position: absolute;
  top: 25%;
  left: 10%;
}
#terminalCircle {
  justify-content: center;
  width: 400px;
  height: 400px;
  margin: 100px auto;
  border: 1px solid #000;
  display: grid;
  grid-template-columns: 100px;
  grid-template-rows: 100px;
  place-content: center;
  border-radius: 50%;
}
#containerSkills {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*2.8em = 2em*1.4 (2em = half the width of a link with img, 1.4 = sqrt(2))*/
  /*border: dashed 1px;*/
  border-radius: 50%;
}
.circleElement {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 200px;
  height: 400px;
  border: dotted 1px #ffccff;
  border-radius: 50%;
  z-index: 0;
  transform-origin: center center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#circleElementFixed1 {
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  animation: circleFixed1 infinite linear 10s forwards;
}
#circleElementFixed2 {
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  animation: circleFixed2 infinite linear 10s forwards;
}
#circleElement1 {
  height: 300px;
  transform: translate(-50%, -50%) rotate(60deg);
  animation: circle1 infinite ease-in-out 8s alternate forwards;
}
#circleElement2 {
  transform: translate(-50%, -50%) rotate(105deg);
  animation: circle2 infinite ease-in-out 16s alternate forwards;
}
#circleElement3 {
  height: 300px;
  transform: translate(-50%, -50%) rotate(202deg);
  animation: circle3 infinite ease-in-out 4s alternate forwards;
}
#circleElementFlat1 {
  width: 1px !important;
  border: none;
  border-radius: 0px;
  border-left: 1px dotted #ffccff;
  animation: circleFlat1 infinite ease-in-out 8s alternate forwards;
}
#circleElementFlat2 {
  width: 1px !important;
  border: none;
  border-radius: 0px;
  border-left: 1px dotted #ffccff;
  animation: circleFlat2 infinite ease-in-out 8s alternate forwards;
}
@keyframes circleFixed1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes circleFixed2 {
  0% {
    transform: translate(-50%, -50%) rotate(380deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(20deg);
  }
}
@keyframes circle1 {
  0% {
    transform: translate(-50%, -50%) rotate(230deg) scaleX(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(130deg) scaleX(0.01);
  }
  100% {
    transform: translate(-50%, -50%) rotate(60deg) scaleX(1);
  }
}
@keyframes circle2 {
  0% {
    transform: translate(-50%, -50%) rotate(105deg) scaleX(1.5);
    /*width: 150px;*/
  }
  50% {
    transform: translate(-50%, -50%) rotate(20deg) scaleX(0.01);
    /*width: 400px;*/
  }
  100% {
    transform: translate(-50%, -50%) rotate(-60deg) scaleX(1.5);
    /*width: 150px;*/
  }
}
@keyframes circle3 {
  0% {
    transform: translate(-50%, -50%) rotate(240deg) scaleX(1);
    /*width: 150px;*/
  }
  50% {
    /*width: 200px;*/
    transform: translate(-50%, -50%) rotate(280deg) scaleX(1.25);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scaleX(1);
    /*width: 150px;*/
  }
}
@keyframes circleFlat1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(270deg);
  }
}
@keyframes circleFlat2 {
  0% {
    transform: translate(-50%, -50%) rotate(270deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(90);
  }
}

.circlePartial {
  display: none;
  width: 580px;
  height: 580px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffccff;
  border-radius: 50%;
  z-index: 30;
  padding: 5px;
  transform-origin: center center;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mask: linear-gradient(#0000 0 0) content-box intersect,
    conic-gradient(#000 50deg, #0000 0);
  box-sizing: border-box;
  aspect-ratio: 1;
}
#circlePartialBack {
  background: red;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%) rotate(95deg);
  mask: linear-gradient(#0000 0 0) content-box intersect,
    conic-gradient(#000 85deg, #0000 0);
}
#circlePartialFront {
  background: blue;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%) rotate(300deg);
  mask: linear-gradient(#0000 0 0) content-box intersect,
    conic-gradient(#000 50deg, #0000 0);
}
#circlePartialWeb {
  background: green;
  width: 580px;
  height: 580px;
  transform: translate(-50%, -50%) rotate(200deg);
  mask: linear-gradient(#0000 0 0) content-box intersect,
    conic-gradient(#000 50deg, #0000 0);
}
#circlePartialDesign {
  background: yellow;
  width: 550px;
  height: 550px;
  transform: translate(-50%, -50%) rotate(200deg);
  mask: linear-gradient(#0000 0 0) content-box intersect,
    conic-gradient(#000 50deg, #0000 0);
}
#circlePartialServer {
  background: purple;
  width: 550px;
  height: 550px;
  transform: translate(-50%, -50%) rotate(200deg);
  mask: linear-gradient(#0000 0 0) content-box intersect,
    conic-gradient(#000 50deg, #0000 0);
}

#circlePathSvg {
  width: 100%;
  height: 100%;
}
#circlePathTest {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  stroke: green;
  stroke-width: 10px;
  fill: transparent;
  stroke-dasharray: 78, 235;
}
.circleText {
  font-size: 0.3rem;
  color: #ffccff;
  text-transform: uppercase;
  alignment-baseline: middle;
}
/*SKILLS*/
.skillIconBox {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px;
  cursor: pointer;
  transition: all 300ms ease-out;
}
.skillIconBox.revealed {
  display: block;
}
.skillIcon {
  display: block;
  margin: 0 auto;
  width: 90%;
  transition: all 500ms ease-out;
  filter: drop-shadow(0 0 1px rgba(255, 204, 255, 1));
}
.skillIcon:hover {
  filter: drop-shadow(0 0 10px rgba(255, 204, 255, 1));
}
.skillTitle {
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: max-content;
  text-align: center;
  transform: translate(-50%);
  background-color: #ffccff;
  color: #000;
  padding: 3px;
}
/*STACKS*/
.stackIconBox {
  display: block;
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px;
  cursor: pointer;
  /*animation: stackIconRotate linear infinite 15s;*/
}
.stackIcon {
  display: block;
  margin: 0 auto;
  width: 90%;
  transition: filter 200ms ease-out;
  filter: drop-shadow(0 0 1px rgba(255, 204, 255, 1));
}
/*
.stackIconText #terminalSkillsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
.terminalSkillTitle {
  display: block;
  text-align: center;
  text-transform: uppercase;
}*/
/*.skillIcon {
  display: block;
  width: 50%;
  padding: 10%;
  margin: 0 auto;
  filter: drop-shadow(0 0 4px rgba(255, 204, 255, 1));
}*/
#tooltipstackIcon {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -55px;
  margin-top: -60px;
  width: 130px;
  height: 40px;
  text-align: center;
  align-content: center;
  background-color: #000;
  color: #ffccff;
}
#backStackBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@keyframes stackIconRotate {
  0% {
    transform: rotate(calc(0deg + var(--rotateDeg)))
      translate(var(--skill-icon-translate-size))
      rotate(calc(360deg - var(--rotateDegNeg)));
  }
  100% {
    transform: rotate(calc(360deg + var(--rotateDeg)))
      translate(var(--skill-icon-translate-size))
      rotate(calc(0deg - var(--rotateDegNeg)));
  }
}
.deg0 {
  --rotateDeg: 0deg;
  --rotateDegNeg: 0deg;
  transform: translate(var(--skill-icon-translate-size));
} /* 12em = half the width of the wrapper */
.deg45 {
  --rotateDeg: 45deg;
  --rotateDegNeg: 45deg;
  transform: rotate(45deg) translate(var(--skill-icon-translate-size))
    rotate(-45deg);
}
.deg90 {
  transform: rotate(90deg) translate(var(--skill-icon-translate-size))
    rotate(-90deg);
}
.deg135 {
  transform: rotate(135deg) translate(var(--skill-icon-translate-size))
    rotate(-135deg);
}
.deg180 {
  transform: translate(var(--skill-icon-translate-size-inverted));
}
.deg225 {
  transform: rotate(225deg) translate(var(--skill-icon-translate-size))
    rotate(-225deg);
}
.deg270 {
  transform: rotate(270deg) translate(var(--skill-icon-translate-size))
    rotate(90deg);
}
.deg315 {
  transform: rotate(315deg) translate(var(--skill-icon-translate-size))
    rotate(-315deg);
}
@keyframes flicker {
  0% {
    opacity: 0.27861;
  }
  5% {
    opacity: 0.34769;
  }
  10% {
    opacity: 0.23604;
  }
  15% {
    opacity: 0.90626;
  }
  20% {
    opacity: 0.18128;
  }
  25% {
    opacity: 0.83891;
  }
  30% {
    opacity: 0.65583;
  }
  35% {
    opacity: 0.67807;
  }
  40% {
    opacity: 0.26559;
  }
  45% {
    opacity: 0.84693;
  }
  50% {
    opacity: 0.96019;
  }
  55% {
    opacity: 0.08594;
  }
  60% {
    opacity: 0.20313;
  }
  65% {
    opacity: 0.71988;
  }
  70% {
    opacity: 0.53455;
  }
  75% {
    opacity: 0.37288;
  }
  80% {
    opacity: 0.71428;
  }
  85% {
    opacity: 0.70419;
  }
  90% {
    opacity: 0.7003;
  }
  95% {
    opacity: 0.36108;
  }
  100% {
    opacity: 0.24387;
  }
}

#hone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  align-content: center;
  display: block;
  font-size: 8vw;
  text-align: center;
  transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1) 0s;
  font-family: "Libre Baskerville";
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: -0.6rem;
  z-index: -1;
}
#honeShadow {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  align-content: center;
  text-align: center;
  z-index: -2;
  color: #ffccff;
  font-family: "Impact";
  font-style: oblique;
  letter-spacing: 10vw;
  font-size: 8vw;
  text-transform: uppercase;
}
#hone.honeHidden {
  opacity: 0.05;
  font-size: 10vw;
  /*color: #ffccff;
  text-shadow: #ffccff 0 0 5px;*/
}
#hone.honeTop {
  transform: translateY(-40vh);
}
/*#honeSvg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  align-content: center;
  text-align: center;
  z-index: -1;
  font-family: "Libre Baskerville";
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: -0.9px;
  transition: all ease-in-out 5s;
}*/
.htwo {
  position: absolute;
  top: -50px;
  left: -30px;
  font-family: "Space Mono";
  background-color: #000;
  border: 1px dotted #ffccff;
  font-size: 2rem;
  font-weight: bolder;
  padding: 20px;
  margin: 10px;
  width: fit-content;
}
/*PROJECTS*/
#projects {
  padding-top: 30vh;
}
.projectElement {
  display: block;
  position: relative;
  width: 60%;
  margin-bottom: 25vh;
  /*transition: ease-in-out all 3s;*/
  cursor: pointer;
  z-index: 2;
}
.projectElement.focused {
  position: fixed;
  width: 100%;
  top: 50%;
  left: 0;
  margin: 0 auto !important;
  transform: translateY(-50%);
  z-index: 3;
}
.projectElement:nth-child(even) {
  margin-left: 40%;
}
.projectSrc {
  /*opacity: 0;
  transform: translateY(-50px);*/
  transition: all ease-out 300ms;
}
.projectElement.focused .projectSrc {
  width: 100%;
}
.projectSrc img {
  width: 100%;
  pointer-events: none;
}
.projectSrc.revealed {
  /*animation: projectReveal 400ms ease-in-out forwards;*/
}
@keyframes projectReveal {
  0% {
    transform: translateY(-50px);
    filter: blur(10px) saturate(5);
    opacity: 0;
  }
  100% {
    filter: blur(0) saturate(1);
    opacity: 1;
    transform: translateY(0);
  }
}
.caption {
  display: block;
  font-size: 0.8rem;
  position: absolute;
  top: 40%;
  opacity: 0;
  transition: all ease-in-out 300ms;
  line-height: 1.05;
  max-width: 40%;
}
.captionShow {
  opacity: 1;
  top: 40%;
}
.captionDenomination {
  margin-bottom: 4px;
  text-transform: uppercase;
}
.projectElement:nth-child(odd) .caption {
  right: -50%;
}
.projectElement:nth-child(even) .caption {
  left: -50%;
  text-align: right;
}
.projectDate {
  font-size: 0.8rem;
}
.projectElement:nth-child(odd) .projectDate {
  text-align: right;
}
#fullScreenProject {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  overflow: no-scroll;
  z-index: 2;
}
#fullScreenProject.revealed {
  display: block;
  opacity: 1;
}
#closeFullScreenBtn {
  display: none;
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 10;
}
#closeFullScreenBtn.revealed {
  display: block;
}
/*.projectElement:nth-child(odd)::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 100%;
  width: 50px;
  height: 1px;
  background-color: #ffccff;
  z-index: -1;
}
.projectElement:nth-child(even)::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 100%;
  width: 50px;
  height: 1px;
  background-color: #ffccff;
  z-index: -1;
}*/
/*CONTACT*/
#contactForm {
  display: block;
  max-width: 600px;
  width: 80%;
  margin: 0 auto;
}
.labelForm {
  display: block;
  width: fit-content;
  padding: 5px 0;
  float: left;
}
.labelError {
  color: crimson;
}
.inputForm {
  display: block;
  clear: both;
  width: calc(100% - 20px);
  float: left;
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 2px;
  background-color: #ffccff;
}
.inputGroup {
  display: block;
  margin: 20px auto 20px auto;
  width: 100%;
  min-height: 50px;
}
#contactForm > br {
  clear: both;
}
.customBtn {
  font-family: "Jetbrains Mono", monospace;
  font-weight: bold;
  box-shadow: 8px 8px #000;
  border: solid 3px #000 !important;
  cursor: pointer;
  color: #000;
  background-color: #ffccff;
  padding: 10px;
  outline: none;
  border: none;
  transition: all ease-out 200ms;
  display: block;
  margin: 10px auto;
  width: fit-content;
}
.customBtn:hover {
  transform: translate(5px, 5px);
  box-shadow: 4px 4px #000;
}
#msgRetour {
  display: block;
  position: fixed;
  top: -10vh;
  left: 50%;
  margin: 0 auto;
  color: #ffccff;
  background-color: #000;
  padding: 10px;
  transform: translateX(-50%);
  transition: top ease-out 300ms;
  z-index: 100;
}
#msgRetour.revealed {
  top: 10vh;
}
#pictoHandMadeBy {
  display: block;
  margin: 0 auto;
  width: 40%;
}
#handMadeByBox {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  margin: 20px auto;
  padding: 10px;
  color: #000;
  border-radius: 5px;
  transition: opacity 200ms ease-in-out, visibility 0s;
}
#handMadeByAdvantages {
  text-transform: uppercase;
}
#legalsFooterLink {
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  color: #ffccff;
  cursor: pointer;
  clear: both;
  transition: all ease-out 150ms;
}
#legalsFooterLink:hover {
  padding: 2px 10px;
  background-color: #ffccff;
  color: #000;
}
#contentExternalLinks {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  gap: 25px;
  margin: 50px auto;
}
.externalLinks {
  display: block;
  color: #fff;
  cursor: pointer !important;
  float: left;
}
.externalLinksIcons {
  display: block;
  width: 50px;
  height: 50px;
  transition: transform ease-in-out 200ms;
}
.externalLinksIcons:hover {
  transform: scale(1.2);
}
/*MENU*/
#menu {
  display: block;
  position: fixed;
  left: 40px;
  bottom: 40px;
  z-index: 2;
}
#menuElement {
  display: block;
  margin-left: 15px;
  font-size: 1.2rem;
  transition: all ease-in-out 200ms;
  text-align: left;
}
#menuCursor {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 20px;
  background-color: #ffccff;
}
#menuCursor.blinking {
  animation: cursorBlink 500ms infinite;
}
@keyframes cursorBlink {
  0% {
    opacity: 0;
  }
  50% {
    box-shadow: 0 0 2px #ffccff;
  }
  100% {
    opacity: 100%;
  }
}
/*FOOTER*/
footer {
  display: block;
  position: fixed;
  text-align: center;
  transform: rotate(-90deg);
  transform-origin: right;
  top: 35%;
  right: 20px;
}
#pictoVysuelFooter {
  position: absolute;
  display: block;
  width: 35px;
  bottom: -10px;
  left: -40px;
  transform: rotate(90deg);
}
/*DESIGN ELEMENTS*/
#grainBackground {
  display: block;
  width: 100%;
  height: 100lvh;
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: hard-light;
  opacity: 0.3;
  z-index: -2;
  pointer-events: none;
}
.graphicElement {
  z-index: -1;
}
.squaredGraphicElement {
  display: block;
  width: 10px;
  height: 10px;
  position: fixed;
  background-color: #ffccff;
  animation: flickerElement1 5s linear infinite;
  z-index: 4;
}
#squaredGraphicElement1 {
  top: 40px;
  left: 40px;
}
#squaredGraphicElement2 {
  bottom: 40px;
  right: 40px;
}
/*
#squaredGraphicElement1::after,
#squaredGraphicElement2::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  background-color: #ffccff;
  transform-origin: top left;
  animation: flickerElement1 5s linear infinite,
    expandElement1 2.5s linear infinite;
}
#squaredGraphicElement1::after {
  top: 0;
  left: 20px;
}
#squaredGraphicElement2::after {
  top: 0;
  right: 20px;
}*/
.crossGraphicElement {
  display: block;
  width: 80px;
  height: 80px;
  position: fixed;
  transform-origin: center center;
  transition: all ease-in-out 200ms;
}
#crossGraphicElement1 {
  bottom: 90px;
  left: 50px;
  animation: flickerElement1 5s 2s linear infinite;
}
#crossGraphicElement2 {
  top: 90px;
  right: 50px;
  animation: flickerElement1 5s 2s linear infinite;
}
.crossLeft {
  animation: crossAnimate 3s alternate linear infinite;
}
.crossRight {
  animation: crossAnimate 3s 100ms alternate linear infinite;
}
@keyframes crossAnimate {
  0% {
    opacity: 0;
  }
  79.9% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  99.9% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*.flickerElement1 {
  animation: flickerElement1 5s linear infinite;
}
.expandElement1 {
  animation: expandElement1 2.5s linear infinite;
}*/
@keyframes flickerElement1 {
  0% {
    opacity: 1;
  }
  13.9% {
    opacity: 1;
  }
  14% {
    opacity: 0;
  }
  14.9% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  22.9% {
    opacity: 1;
  }
  23% {
    opacity: 0;
  }
  24.9% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  34.9% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  50.9% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  51.9% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes expandElement1 {
  0%,
  45% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(5);
  }
  55%,
  100% {
    transform: scaleX(1);
  }
}
@keyframes flickerCustomm {
  0% {
    opacity: 0;
  }
  70%,
  100% {
    opacity: 1;
  }
}
@keyframes flickerCustom {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes crossAnimate1 {
  0% {
    transform: rotate(0);
  }
  90% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes crossAnimate2 {
  0% {
    transform: rotate(0);
  }
  90% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-90deg);
  }
}
/*MOBILE ADJUSTMENTS*/
@media (max-width: 600px) {
  :root {
    --skill-icon-translate-size: 25vw;
    --skill-icon-translate-size-inverted: -25vw;
  }
  body {
    font-size: 0.8rem;
  }
  #scrollHelpAscii {
    bottom: 20%;
  }
  #menu {
    left: 20px;
    bottom: 20px;
  }
  #hone {
    letter-spacing: -0.3rem;
  }
  .sectionHelpBox {
    width: 90%;
    height: 20px;
  }
  .sectionHelpTexts {
    text-align: left;
  }
  .sectionHelpSeparator {
    width: 50%;
  }
  #vectoimPicto {
    width: 200px;
    margin-left: -100px;
    margin-top: -80px;
  }
  .terminalContentBox {
    padding: 10% 5%;
    margin: 20% auto;
  }
  #terminalAbout {
    margin: 10% auto;
  }
  #terminalInfos {
    line-height: 1.1rem;
  }
  #terminalSkillsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  #containerSkills {
    width: 100%;
    height: 100%;
  }
  .skillIconBox,
  .stackIconBox {
    width: 60px;
    height: 60px;
    margin: -30px;
  }
  .skillTitle {
    bottom: -10px;
    font-size: 0.8rem;
  }
  .circleElement {
    height: 200px;
  }
  #circleElementFixed2 {
    height: 300px;
    width: 300px;
  }
  #circleElementFlat1,
  #circleElementFlat2 {
    height: 300px;
  }
  #footer {
    font-size: 0.8rem;
    right: 10px;
  }
  #projects {
    padding-top: 10vh;
  }
  .projectElement {
    margin-bottom: 15vh;
  }
  .caption {
    font-size: 0.6rem;
  }
  #pictoVysuelFooter {
    width: 25px;
    bottom: -6px;
    left: -30px;
  }
  #squaredGraphicElement1 {
    top: 20px;
    left: 20px;
  }
  #squaredGraphicElement2 {
    bottom: 20px;
    right: 20px;
  }
  #crossGraphicElement1 {
    left: 20px;
  }
  #crossGraphicElement2 {
    right: 20px;
  }
}
/*ERROR PAGE*/
#honeStatic {
  width: 80vw;
  margin: 0 auto 20px auto;
  align-content: center;
  display: block;
  font-size: 8vw;
  font-weight: bold;
  text-align: center;
  transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1) 0s;
  font-family: "Libre Baskerville";
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: -0.6rem;
}
#errorText {
  text-align: center;
  font-size: 1.3rem;
  text-transform: uppercase;
}
#errorImg {
  display: block;
  max-width: 500px;
  margin: 0 auto;
  width: 80%;
}
