@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed&family=Fira+Code&display=swap");
* {
  font-family: "Fira Code", monospace;
}

p {
  font-size: 17px;
}

* {
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  position: relative;
}

header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.blur {
  backdrop-filter: blur(10px);
}
header h2 {
  margin: 0 40px;
}
header #burger {
  cursor: pointer;
  display: flex;
}
header svg {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px;
  width: 80px;
  height: 80px;
}
header .active svg {
  transform: rotate(90deg);
}
header .active path:nth-child(1) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}
header .active path:nth-child(2) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}
header .active path:nth-child(3) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}
header .active path:nth-child(4) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}
header .active path:nth-child(5) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}
header .active path:nth-child(6) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}
header path {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
header path:nth-child(1) {
  transform-origin: 36% 40%;
}
header path:nth-child(2) {
  stroke-dasharray: 29 299;
}
header path:nth-child(3) {
  transform-origin: 35% 63%;
}
header path:nth-child(4) {
  stroke-dasharray: 29 299;
}
header path:nth-child(5) {
  transform-origin: 61% 52%;
}
header path:nth-child(6) {
  transform-origin: 62% 52%;
}
@media screen and (min-width: 800px) {
  header.blur {
    backdrop-filter: none;
  }
  header #burger {
    display: none;
  }
}

main {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  flex-direction: column;
}
main section {
  margin: 40px auto 0;
}
main p {
  max-width: 320px;
  border-width: 2px;
  border-color: #ff90fb;
  border-style: hidden solid hidden hidden;
  padding-right: 10px;
}
main div.cta {
  margin: 40px auto 0;
}
main #img_profile {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background: url("media/profile_min.webp") top 15% left 47%;
  background-size: 260%;
}
main .reseaux {
  width: fit-content;
  margin: 0 auto;
}
main .reseaux > * {
  padding: 0 15px;
}
main .reseaux #discord:hover, main .reseaux #github:hover, main .reseaux #mail:hover {
  filter: drop-shadow(0 0 5px rgba(141, 200, 255, 0.6823529412));
}
main .reseaux .hidden {
  transform: translateY(50px);
  opacity: 0;
}
main .pseudo {
  width: 275px;
}
main .pseudo h1 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 800px) {
  main {
    justify-content: center;
  }
  main .ondesktop.row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  main section {
    margin: 10px auto 0;
  }
  main p {
    max-width: 500px;
  }
  main div.cta {
    margin: 40px auto;
  }
  main #img_profile {
    width: 250px;
    height: 250px;
  }
}

div.cta {
  width: fit-content;
}
div.cta button, div.cta a.button {
  transition: 0.1s;
  text-decoration: none;
  background: none;
  border: 2px solid #8dc8ff;
  color: #8dc8ff;
  border-radius: 0;
  font-size: 16px;
  padding: 15px;
  box-shadow: 0 0 5px rgba(141, 200, 255, 0.6823529412);
}
div.cta button:hover, div.cta a.button:hover {
  box-shadow: 0 0 10px rgb(141, 200, 255);
}

* {
  color: #f0eeee;
}

body {
  background: linear-gradient(180deg, #261726 0%, #262a2e 76.04%);
}

div.head-pad {
  height: 100px;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-stretch: condensed;
}

h1 {
  font-size: 35px;
  border-width: 2px;
  border-color: #f0eeee;
  border-style: solid hidden;
  padding: 5px;
  width: fit-content;
  margin: 20px auto;
}

h1 span.hashtag {
  font-family: inherit;
  color: #868686;
}

h2 {
  font-size: 32px;
  color: #ff90fb;
}

main .border {
  width: fit-content;
  padding: 7px;
  border: 3px solid #ff90fb;
  box-shadow: 0 0 5px rgba(255, 144, 251, 0.6823529412);
  border-radius: 100%;
  margin: 0 auto;
}

main ul {
  margin: 30px;
  list-style: none;
}

main ul li {
  padding: 5px;
  margin: 5px;
  font-size: 20px;
}

main ul li:before {
  content: "[ ";
}

main ul li:after {
  content: " ]";
}

main ul li.list-hidden {
  transform: translateY(100px);
  opacity: 0;
}

main ul li div {
  display: inline-block;
  width: 200px;
  text-align: center;
}

main.project p {
  margin-bottom: 30px;
}

main.project h1 {
  border-style: solid none none;
  width: 250px;
  text-align: center;
}

main.project h3 {
  border-style: none none solid;
  width: 250px;
  text-align: center;
  margin: 30px auto 60px;
  font-size: 24px;
}

main.project img {
  width: 100%;
  max-width: 600px;
  height: 250px;
  background: transparent;
  border: none;
  margin: 50px;
  object-fit: contain;
}

main.project blockquote {
  font-size: 20px;
  max-width: 80vw;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

main.project blockquote i {
  color: inherit;
}

main.project blockquote:before, main.project blockquote:after {
  color: #ff90fb;
  content: "“";
  display: block;
  font-size: 30px;
  text-align: left;
}

main.project blockquote:after {
  content: "”";
  text-align: right;
}

aside {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
}

aside nav {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  gap: 10px;
}

canvas {
  position: fixed;
  top: 0;
  z-index: -1;
  mix-blend-mode: screen;
  opacity: 50%;
  overflow: hidden;
}

a.no-deco {
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */

/*# sourceMappingURL=style.css.map */
