@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap");
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: black;
}

@keyframes scrollBanner {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
* {
  cursor: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  outline: none;
}

/* Screen reader class to hide the content visually */
.sr-only {
  position: absolute !important;
  margin: -1px !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

/*General and page initial setup*/
html {
  font-size: 100%;
  color: var(--dark);
  font-family: "Space Mono", sans-serif;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--dark);
}

h2, h3 {
  font-weight: 400;
}

:root {
  --dark: #303030;
  --light: #F9F9F9;
  --purple: #CDB4FF;
  --green: #B5FFC8;
  --filter-light: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(3195%) hue-rotate(288deg) brightness(121%) contrast(95%);
}

body {
  position: relative;
  max-width: 100vw;
  min-height: 100Vh;
  background-color: var(--light);
}

.paperOverlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 100vw;
  width: 100%;
  background-repeat: repeat;
  background-size: auto;
  background-image: url("../images/so-white.png");
  mix-blend-mode: multiply;
  pointer-events: none;
}

header {
  position: fixed;
  z-index: 5;
  top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 55px 55px;
  align-items: center;
  justify-items: center;
  border-bottom: 2px solid var(--dark);
  border-top: 2px solid var(--dark);
}
header .title {
  grid-area: 1/1/2/3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
}
header .title h3 {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--light);
}
header nav {
  grid-area: 2/2/3/3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  border-left: 1px solid var(--dark);
}
header nav ul {
  display: none;
}
header nav input[type=checkbox] {
  display: none;
}
header nav label {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav label .burger {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  top: -6px;
}
header nav label .burger::before {
  content: "";
  position: relative;
  display: block;
  top: 12px;
  width: 24px;
  height: 2px;
  background-color: var(--dark);
}
header nav input[type=checkbox]:checked ~ label .burger {
  transform: translateY(6px) rotate(45deg);
}
header nav input[type=checkbox]:checked ~ label .burger::before {
  transform: translateY(-12px) rotate(-90deg);
}
header nav input[type=checkbox]:checked ~ ul {
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 220px;
  top: 114px;
  width: calc(50% + 2px);
  background-color: var(--light);
  z-index: 4;
  border-left: 1.8px solid var(--dark);
  border-bottom: 2px solid var(--dark);
}
header nav input[type=checkbox]:checked ~ ul li {
  box-sizing: content-box;
  height: 57px;
  border-bottom: 2px solid var(--dark);
}
header nav input[type=checkbox]:checked ~ ul li:last-of-type {
  border-bottom: none;
}
header nav input[type=checkbox]:checked ~ ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 18px;
  width: 100%;
  height: 100%;
}
header .bonus {
  grid-area: 2/1/3/2;
  width: 100%;
  height: 100%;
  border-right: 1px solid var(--dark);
  background-color: var(--purple);
  font-size: 18px;
}
header .bonus a {
  width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block {
  height: 55px;
  border-top: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.part {
  font-size: 32px;
  font-weight: 700;
  justify-content: flex-start;
  padding: 0 12px;
  text-transform: uppercase;
}

main {
  margin-top: 110px;
}

.divider {
  width: 100%;
  height: 55px;
  background-color: var(--light);
}

.rire {
  background-image: url("../images/gray2.png");
}

.island {
  background-image: url("../images/island.png ");
}

.photo {
  width: 100%;
  height: 250px;
  background-position: 50% 40%;
  background-size: cover;
  border-bottom: 2px solid var(--dark);
}

.text {
  padding: 24px 12px 32px;
  border-bottom: 2px solid var(--dark);
  color: var(--dark);
}
.text h1 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 12px;
  line-height: 34px;
}
.text p, .text h2 {
  font-size: 16px;
  line-height: 18px;
}

.landing .btn-landing a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  border-bottom: 2px solid var(--dark);
  background-color: var(--purple);
  gap: 12px;
  font-size: 18px;
}
.landing .btn-landing a img {
  width: 24px;
  height: 24px;
  transition: 0.4s ease;
}
.landing .btn-landing a:hover {
  font-weight: 700;
}
.landing .btn-landing a:hover img {
  transform: rotate(315deg);
  transition: 0.4s ease;
}

.blog .chantier {
  width: 100%;
  height: 220px;
  border-bottom: 2px solid var(--dark);
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 150px 150px;
  grid-template-rows: repeat(4, 55px);
  justify-content: flex-end;
  align-items: flex-end;
}
.blog .chantier p:first-of-type {
  padding: 12px;
  grid-area: 1/1/2/3;
}
.blog .chantier .block {
  width: 100%;
  border: 2px solid var(--dark);
}
.blog .chantier #b1 {
  grid-area: 4/3/5/4;
  border-right: 0;
  background-color: var(--green);
}
.blog .chantier #b2 {
  grid-area: 3/3/4/4;
  border-bottom: 0;
  border-right: 0;
  background-color: white;
}
.blog .chantier #b3 {
  grid-area: 4/2/5/3;
  border-right: 0;
  background-color: var(--purple);
}
.blog .chantier #b4 {
  grid-area: 3/2/4/3;
  background-color: var(--green);
  transform: translateX(43px) translateY(-38px) rotate(-35deg);
}

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.personnage .text {
  border-bottom-width: 1px;
}
.personnage .text p {
  padding-bottom: 12px;
}
.personnage .text p:last-of-type {
  padding-bottom: 0;
}
.personnage .text a {
  font-weight: 700;
}
.personnage .skillz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--dark);
}
.personnage .skillz > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 55px;
  font-size: 14px;
  border: 1px solid var(--dark);
}
.personnage .skillz > div:nth-of-type(2n + 1) {
  border-left: 0;
}
.personnage .skillz > div:nth-of-type(2n) {
  border-right: 0;
}
.personnage .speak {
  background-image: url("../images/language-solid.svg");
}
.personnage .code {
  background-image: url("../images/code-solid.svg");
}
.personnage .react {
  background-image: url("../images/react.svg");
}
.personnage .git {
  background-image: url("../images/git.svg");
}
.personnage .php {
  background-image: url("../images/php.svg");
}
.personnage .wordpress {
  background-image: url("../images/wordpress-simple.svg");
}

.projet {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 450px;
  border-bottom: 2px solid var(--dark);
}
.projet:nth-of-type(2n + 1) {
  background-color: var(--purple);
}
.projet:nth-of-type(2n) {
  background-color: var(--green);
}
.projet .text {
  border: 0;
  padding-bottom: 0;
  padding-top: 16px;
}
.projet .text span {
  font-size: 14px;
}
.projet .text h4 {
  padding-top: 8px;
  font-size: 24px;
  font-weight: 700;
}
.projet .ext-link {
  align-self: flex-start;
  width: calc(50% + 1px);
}
.projet .ext-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border: 2px solid var(--dark);
  border-bottom: 0;
  border-left: 0;
  background-color: var(--light);
  gap: 12px;
  font-size: 18px;
}
.projet .ext-link a img {
  width: 24px;
  height: 24px;
  transform: rotate(-45deg);
  transition: 0.3s ease;
}
.projet .ext-link:hover a {
  font-weight: 700;
}
.projet .ext-link:hover a img {
  transform: rotate(180deg);
  transition: 0.2s ease;
}

.mock {
  display: flex;
  perspective: 250px;
  width: 100%;
  height: 300px;
}
.mock:hover .img-move {
  transition: transform 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .mock:hover .img-move {
    transform: scale(0.8) translateZ(0px) translateY(50px) translateX(180px) rotateY(0deg);
  }
}
.mock:hover .img-move2 {
  transition: transform 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .mock:hover .img-move2 {
    transform: scale(0.9) translateZ(-50px) translateY(50px) translateX(-250px) rotateY(0deg);
  }
}
.mock:hover .img-move3 {
  transition: transform 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .mock:hover .img-move3 {
    transform: scale(0.9) translateZ(-75px) translateY(-75px) translateX(0px) rotateY(0deg);
  }
}

.img-move {
  max-height: 350px;
  z-index: 4;
  position: absolute;
  top: calc(50% - 175px);
  left: calc(50% - 125px);
  transform-style: preserve-3d;
  mix-blend-mode: normal;
  transform: scale(0.7) translateZ(-100px) translateY(50px) translateX(100px) rotateY(-30deg);
  filter: drop-shadow(-10px 10px 20px hsla(0, 0%, 0%, 0.3));
  transition: transform 0.4s ease;
}

.img-move2 {
  max-height: 350px;
  position: absolute;
  top: calc(50% - 175px);
  left: calc(50% - 75px);
  transform-style: preserve-3d;
  mix-blend-mode: normal;
  z-index: 4;
  transform: scale(0.7) translateZ(-100px) translateY(100px) translateX(-150px) rotateY(30deg);
  filter: drop-shadow(-10px 10px 20px hsla(0, 0%, 0%, 0.3));
  transition: transform 0.4s ease;
}

.p3 .img-move2 {
  transform: scale(0.7) translateZ(-100px) translateY(75px) translateX(100px) rotateY(-30deg);
}
.p3 .mock:hover .img-move2 {
  transition: transform 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .p3 .mock:hover .img-move2 {
    transform: scale(0.8) translateZ(0px) translateY(50px) translateX(180px) rotateY(0deg);
  }
}

.img-move3 {
  max-height: 350px;
  max-width: 600px;
  position: absolute;
  top: calc(50% - 175px);
  left: calc(50% - 300px);
  transform-style: preserve-3d;
  mix-blend-mode: normal;
  z-index: 2;
  transform: scale(0.7) translateZ(-100px) translateY(-75px) translateX(0px) rotateY(0deg);
  filter: drop-shadow(-10px 10px 20px hsla(0, 0%, 0%, 0.3));
  transition: transform 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .img-move3 {
    transform: scale(0.8) translateZ(-100px) translateY(-75px) translateX(0px) rotateY(0deg);
  }
}

.pim .img-move3 {
  max-height: 600px;
  width: 400px;
  top: calc(50% - 200px);
  left: calc(50% - 200px);
  transform: scale(0.8) translateZ(-100px) translateY(0px) translateX(0px) rotateY(0deg);
}
@media screen and (min-width: 1024px) {
  .pim .img-move3 {
    transform: scale(0.8) translateZ(-100px) translateY(-100px) translateX(0px) rotateY(0deg);
  }
}
.pim:hover .img-move3 {
  transition: transform 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .pim:hover .img-move3 {
    transform: scale(0.9) translateZ(-50px) translateY(-50px) translateX(0px) rotateY(0deg);
  }
}

.github-banner {
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
  color: var(--light);
  font-size: 18px;
  justify-content: flex-start;
}
.github-banner span {
  gap: 12px;
  white-space: nowrap;
  animation: scrollBanner 10s linear infinite;
  padding-right: 12px;
}
.github-banner span div {
  filter: var(--filter-light);
}
.github-banner .github {
  background-image: url("../images/github.svg");
}
.github-banner::after {
  position: absolute;
  content: attr(data-text);
  width: 100%;
  height: 100%;
  display: inline-block;
  top: 100%;
  left: 0;
}

.start {
  justify-content: flex-start;
  gap: 12px;
}

.mail {
  background-size: cover;
  background-image: url("../images/square-envelope-solid.svg");
  filter: brightness(0) saturate(100%) invert(53%) sepia(6%) saturate(1683%) hue-rotate(84deg) brightness(97%) contrast(91%);
}

.tel {
  background-size: cover;
  background-image: url("../images/square-phone-solid.svg");
  filter: brightness(0) saturate(100%) invert(53%) sepia(6%) saturate(1683%) hue-rotate(84deg) brightness(97%) contrast(91%);
}

.insta {
  background-size: cover;
  background-image: url("../images/square-instagram.svg");
  filter: brightness(0) saturate(100%) invert(50%) sepia(18%) saturate(722%) hue-rotate(219deg) brightness(92%) contrast(90%);
}

.malt {
  background-image: url("../images/malt.png");
  background-size: cover;
  filter: brightness(0) saturate(100%) invert(50%) sepia(18%) saturate(722%) hue-rotate(219deg) brightness(92%) contrast(90%);
}

.linkedin {
  background-image: url("../images/linkedin.svg");
  background-size: cover;
  filter: brightness(0) saturate(100%) invert(50%) sepia(18%) saturate(722%) hue-rotate(219deg) brightness(92%) contrast(90%);
}

.contact .text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact .text .icon {
  width: 32px;
  height: 32px;
}
.contact .text > p {
  padding-bottom: 16px;
}
.contact .text a {
  font-size: 14px;
  flex-direction: row-reverse;
}
.contact .text > div {
  padding-top: 6px;
  gap: 42px;
  flex-direction: row-reverse;
}

.formulaire {
  background-color: var(--dark);
  color: var(--light);
  padding: 48px 12px 48px;
  display: flex;
  gap: 48px;
  flex-direction: column;
}
.formulaire h5 {
  color: var(--green);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.button {
  position: relative;
  gap: 12px;
  width: 100%;
  background-color: var(--purple);
  margin: 0 auto;
  border: 0;
  overflow: hidden;
}
.button input {
  width: 100%;
  height: 100%;
}
.button img {
  width: 24px;
  height: 24px;
  transition: 0.4s ease;
}
.button:hover {
  font-weight: 700;
}
.button:hover img {
  transform: rotate(315deg);
  transition: 0.4s ease;
}

.form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form form input:focus-visible, .form form textarea:focus-visible {
  outline: none;
  border-color: var(--green);
}
.form form input:hover, .form form textarea:hover {
  border-color: var(--purple);
}
.form form * {
  font: inherit;
}
.form form input {
  color: var(--light);
  padding: 10px 12px;
  background-color: var(--dark);
  border: 2px solid var(--light);
}
.form form textarea {
  color: var(--light);
  resize: none;
  height: 150px;
  padding: 12px 24px 12px 12px;
  line-height: 20px;
  background-color: var(--dark);
  border: 2px solid var(--light);
}

.mobile-none {
  display: none;
}

.tablet-none {
  display: inline-block;
}

.column {
  flex-direction: column;
}

.no-touch {
  display: none;
}

@media screen and (min-width: 768px) {
  .tablet-none {
    display: none;
  }
  .mobile-none {
    display: inline-block;
  }
  header {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 55px;
  }
  header .title {
    grid-area: 1/1/2/2;
  }
  header nav {
    grid-area: 1/2/2/6;
    border: 0;
  }
  header nav label {
    display: none;
  }
  header nav input[type=checkbox]:checked ~ label {
    display: none;
  }
  header nav input[type=checkbox]:checked ~ ul {
    position: relative;
    top: 0;
    border: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  header nav input[type=checkbox]:checked ~ ul li {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-bottom: 0;
    border-left: 1px solid var(--dark);
    border-right: 1px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
  }
  header nav input[type=checkbox]:checked ~ ul li a {
    font-size: 16px;
  }
  header nav ul {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  header nav ul li {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border-right: 2px solid var(--dark);
    border-left: 2px solid var(--dark);
  }
  header nav ul li a {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header nav ul li:nth-of-type(2) {
    border: 0;
  }
  header nav ul li:last-of-type {
    border: 0;
  }
  header .bonus {
    grid-area: 1/6/2/7;
    border: 0;
    border-left: 2px solid var(--dark);
  }
  main {
    margin-top: 57px;
  }
  .landing {
    display: grid;
    width: 100%;
    grid-template-columns: calc(50% + 1px) 50%;
    grid-template-rows: auto;
  }
  .landing .text {
    padding: 64px 32px 64px 12px;
  }
  .landing .text h1 {
    padding-bottom: 24px;
  }
  .landing .right {
    grid-column: 1/2;
    grid-row: 1/2;
    border-right: 1px solid var(--dark);
  }
  .photo {
    grid-row: 1/2;
    grid-column: 2/3;
    border-left: 1.4px solid var(--dark);
    height: 100%;
    flex-grow: 1;
  }
  .blog .chantier {
    grid-template-columns: 1fr repeat(2, 150px);
    grid-template-rows: repeat(4, 55px);
  }
  .blog .chantier > p:first-of-type {
    padding-left: 24px;
  }
  .blog .chantier img {
    grid-area: 4/1/5/2;
    width: 90px;
    transform: translateX(150%);
  }
  .blog .chantier #b5 {
    position: absolute;
    display: flex;
    width: 150px;
    background-color: var(--green);
    z-index: -1;
    transform: translateX(100%) translateY(-150%) rotate(-40deg);
  }
  .text {
    padding-left: 24px;
    padding-right: 32px;
  }
  .projet .text {
    padding: 16px 24px;
  }
  .projet .ext-link {
    width: 250px;
  }
  .part {
    padding: 0 0 0 24px;
  }
  .personnage .perso {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .personnage .perso .photo {
    grid-row: 1/3;
    background-position: 100% 60%;
    margin-left: 0.5px;
    border-width: 2px;
  }
  .personnage .text {
    padding: 32px 32px 32px 24px;
  }
  .contact .text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
  }
  .contact .text > p {
    grid-area: 1/1/4/2;
    padding-right: 32px;
    padding-bottom: 0;
    align-self: center;
  }
  .contact .text > div {
    flex-direction: row;
  }
  .contact .text > a {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .contact .text a {
    flex-direction: row;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .contact .formulaire {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    gap: 0;
  }
  .contact .formulaire h5 {
    width: 50%;
  }
  .contact .formulaire .form {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .no-touch {
    display: block;
  }
  .projet:first-of-type {
    border-right: 2px solid var(--dark);
  }
  .column {
    flex-direction: row;
  }
  body {
    padding: 55px;
  }
  header {
    position: relative;
    max-width: 1124px;
    margin: 0 auto;
    border: 2px solid var(--dark);
    border-bottom: 0;
  }
  main {
    overflow: hidden;
    max-width: 1124px;
    margin-top: 0;
    margin: 0 auto;
    border: 2px solid var(--dark);
  }
  .divider {
    border-left-color: var(--light);
  }
  .personnage .photo {
    border-left: 2px solid var(--dark);
  }
  .personnage .text {
    padding-right: 40px;
    padding-left: 32px;
  }
  .personnage .text p {
    padding-bottom: 16px;
  }
  .part {
    padding-left: 32px;
  }
  .text {
    padding-left: 32px;
  }
  .text p, .text h2 {
    font-size: 18px;
    line-height: 20px;
  }
  .landing {
    height: calc(50vw - 110px);
    max-height: 600px;
  }
  .landing .right {
    display: flex;
    flex-direction: column;
    box-sizing: content-box;
    border-right: 1.6px solid var(--dark);
    gap: 0;
  }
  .landing .photo {
    border-left: 1px solid var(--dark);
  }
  .landing .text {
    flex-grow: 1;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .landing .text h1 {
    max-width: 25ch;
    font-size: 36px;
    padding-bottom: 32px;
  }
  .landing .text p, .landing .text h2 {
    max-width: 58ch;
    font-size: 18px;
    line-height: 20px;
  }
  .projet {
    height: 550px;
  }
  .projet .text {
    padding-left: 32px;
  }
  .p3 {
    background-color: var(--green) !important;
  }
  .p4 {
    background-color: var(--purple) !important;
  }
  .cursor .cursor--small,
  .cursor .cursor--large,
  .cursor .cursor--text {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: var(--cursor-size);
    height: var(--cursor-size);
    mix-blend-mode: difference;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .cursor .cursor--text {
    --cursor-size: fit-content;
    font-size: 0.75rem;
    color: #fff;
    opacity: 0;
  }
  .cursor .cursor--text .text {
    font-family: "Space Mono", sans-serif;
    font-weight: bold;
  }
  .cursor .cursor--small {
    --cursor-size: 20px;
    background: #fff;
  }
  .cursor .cursor--large {
    --cursor-size: 60px;
    border: 2px solid #fff;
  }
  .hiddenPaper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(48, 48, 48, 0.7647058824);
    z-index: 11;
  }
}/*# sourceMappingURL=index.css.map */