:root {
  --background: hsl(210, 10%, 15%);
  --background2: hsl(210, 10%, 20%);
  --background3: hsla(260, 80%, 20%, .5);
  --softest-shadow: rgba(0, 0, 0, .125);
  --soft-shadow: rgba(0, 0, 0, .25);
  --medium-shadow: rgba(0, 0, 0, .5);
  --strong-shadow: rgba(0, 0, 0, .7);
  --softest-light: rgba(255, 255, 255, .125);
  --soft-light: rgba(255, 255, 255, .25);
  --medium-light: rgba(255, 255, 255, .5);
  --strong-light: rgba(255, 255, 255, .7);
  --strongest-light: rgba(255, 255, 255, .9);
}

* {
  scroll-behavior: smooth;
}

html {
  background-color: var(--background);
  font-family: ProximaNova, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  z-index: -2000;
  scrollbar-color: var(--background) grey;
  scrollbar-width: thin;
}
html::-webkit-scrollbar {
  width: 10px;
  padding: 1px;
  background-color: grey;
}
html::-webkit-scrollbar-thumb {
  background-color: var(--background);
}

hr {
  width: 80%;
  margin: 0px auto;
  height: 1px;
  border: 0.4px solid var(--softest-shadow);
  position: relative;
  box-shadow: 0px 0px 20px 0px var(--soft-shadow);
}

#home {
  height: 100vh;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
  perspective: 1000px;
}
#home #title {
  display: flex;
  transition: 0.3s;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  font-size: 100px;
  width: 100%;
  font-weight: bolder;
  text-align: center;
  color: whitesmoke;
  text-shadow: 0px 0px 12px black;
  z-index: 20;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotateX(90deg);
}
#home #title.enable {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) rotateX(0deg);
}
#home #stars-window {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  z-index: 19;
  animation-name: fadeIn;
  animation: normal;
  animation-duration: 0.6s;
}

#about {
  font-family: ProximaNova, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--strongest-light);
  text-transform: uppercase;
  font-weight: 200;
  padding-bottom: 60px;
  display: block;
  padding-top: 20px;
}
#about h2 {
  padding-left: 60px;
  font-size: 200%;
  text-decoration: underline;
  color: black;
  background-size: 100%;
  display: inline-block;
}
#about .about-text {
  transition: 0.4s;
  background-color: rgb(233, 233, 233);
  text-align: justify;
  display: block;
  opacity: 0;
  transform: scale(0.3);
  line-height: 130%;
  padding: 50px;
  margin: 19px 39px;
  margin-top: 0px;
  border: 1px solid var(--softest-shadow);
  box-shadow: 0px 0px 8px 0px var(--softest-shadow);
}
#about .about-text.isVisible {
  opacity: 1;
  transform: scale(1);
}

#projets {
  padding: 40px;
  padding-top: 20px;
  text-transform: uppercase;
  min-height: 600px;
}
#projets h2 {
  font-size: 200%;
  text-decoration: underline;
  color: whitesmoke;
  background-size: 100%;
  display: inline-block;
  margin-left: 20px;
}

.article-flex {
  display: flex;
  margin: 19px 39px;
}
.article-flex > .about-text {
  margin: 0px !important;
  width: 100%;
}

#sticky-menu {
  z-index: 21;
  background-color: rgba(0, 0, 0, 0.45);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  list-style-type: none;
  overflow: hidden;
}
#sticky-menu ul {
  margin: 0;
  list-style-type: none;
  gap: 2rem;
  padding: 0 2rem;
}
#sticky-menu li {
  position: relative;
  line-height: 4rem;
  font-size: 2rem;
}
#sticky-menu .nav-link {
  text-decoration: none;
}
#sticky-menu .nav-link div {
  transition: 0.2s;
  color: whitesmoke;
  filter: drop-shadow(0px 0px 2px var(--medium-shadow));
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 1.5rem;
}
#sticky-menu .nav-link div:hover {
  background-color: var(--soft-light);
}
#sticky-menu #small-title {
  transition: 0.4s;
  display: flex;
  transition: 0.3s;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: bolder;
  text-align: center;
  color: whitesmoke;
  text-shadow: 0px 0px 12px black;
  z-index: 20;
  position: absolute;
  padding-left: 30px;
  left: 0px;
  line-height: 80px;
  transform: translateX(-100%);
}
#sticky-menu #small-title.active {
  transform: translateX(0%);
}

footer {
  background-color: var(--softest-shadow);
  padding: 30px;
  display: flex;
  justify-content: space-around;
}
footer .discord {
  transition: 0.4s;
  position: relative;
  border-radius: 100px;
  background-color: var(--soft-shadow);
}
footer .discord a {
  transition: 0.4s;
  min-height: 80px !important;
  width: 100px;
}
footer .discord img {
  transition: 0.4s;
  transform: scale(0.6);
  width: 100px !important;
  height: 100px !important;
}
footer .discord:hover {
  background-color: var(--medium-shadow);
}
footer .discord:hover img {
  transform: scale(0.8);
}
footer .copyright {
  color: whitesmoke;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 30px;
  border-left: 0.1rem solid var(--soft-light);
  border-right: 0.1rem solid var(--soft-light);
}
footer .copyright * {
  padding: 0.2rem;
  margin: 0;
}
footer .logo {
  background-image: url("img/logo-1.png");
  width: 100px;
  height: 100px;
  background-size: 100%;
  filter: drop-shadow(0px 0px 4px var(--medium-shadow));
}

.title-anim {
  animation-name: title;
  animation-duration: 0.5s;
  z-index: 4;
}

#background-stars {
  background-image: url("img/nebuleuse.png");
  background-color: hsl(270, 20%, 4%);
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
}

@keyframes title {
  0% {
    transform: scale(3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transition: 0s;
  }
  100% {
    opacity: 0.7;
    transition: 0s;
  }
}
.mobile {
  font-size: 120%;
}
.mobile .p-value {
  background-image: none;
}
.mobile h1,
.mobile h2,
.mobile h3 {
  background-image: none !important;
}
.mobile #projets {
  color: whitesmoke !important;
}
.mobile #projets h2 {
  color: whitesmoke !important;
  text-decoration: none;
}
.mobile #projets .projet .projet-desc {
  color: whitesmoke;
}
.mobile #projets .projet .progress-bar {
  margin-top: 100px;
}
.mobile #projets .projet .progress-bar .sticker {
  font-size: 90%;
}
.mobile #about {
  color: black !important;
}
.mobile #about h2 {
  color: black !important;
  text-decoration: none;
}
.mobile #about .about-text {
  font-weight: normal;
}
.mobile .discord {
  max-height: 100px;
  max-width: 100px;
}
.mobile .copyright {
  max-height: 100px;
}

.mar-0 {
  margin: 0em;
}

.pad-0 {
  padding: 0em;
}

.mar-t-0 {
  margin-top: 0em;
}

.pad-t-0 {
  margin-top: 0em;
}

.mar-r-0 {
  margin-right: 0em;
}

.pad-r-0 {
  margin-right: 0em;
}

.mar-l-0 {
  margin-left: 0em;
}

.pad-l-0 {
  margin-left: 0em;
}

.mar-b-0 {
  margin-bottom: 0em;
}

.pad-b-0 {
  margin-bottom: 0em;
}

.mar-1 {
  margin: 0.75em;
}

.pad-1 {
  padding: 0.75em;
}

.mar-t-1 {
  margin-top: 0.75em;
}

.pad-t-1 {
  margin-top: 0.75em;
}

.mar-r-1 {
  margin-right: 0.75em;
}

.pad-r-1 {
  margin-right: 0.75em;
}

.mar-l-1 {
  margin-left: 0.75em;
}

.pad-l-1 {
  margin-left: 0.75em;
}

.mar-b-1 {
  margin-bottom: 0.75em;
}

.pad-b-1 {
  margin-bottom: 0.75em;
}

.mar-2 {
  margin: 1.5em;
}

.pad-2 {
  padding: 1.5em;
}

.mar-t-2 {
  margin-top: 1.5em;
}

.pad-t-2 {
  margin-top: 1.5em;
}

.mar-r-2 {
  margin-right: 1.5em;
}

.pad-r-2 {
  margin-right: 1.5em;
}

.mar-l-2 {
  margin-left: 1.5em;
}

.pad-l-2 {
  margin-left: 1.5em;
}

.mar-b-2 {
  margin-bottom: 1.5em;
}

.pad-b-2 {
  margin-bottom: 1.5em;
}

.mar-3 {
  margin: 2em;
}

.pad-3 {
  padding: 2em;
}

.mar-t-3 {
  margin-top: 2em;
}

.pad-t-3 {
  margin-top: 2em;
}

.mar-r-3 {
  margin-right: 2em;
}

.pad-r-3 {
  margin-right: 2em;
}

.mar-l-3 {
  margin-left: 2em;
}

.pad-l-3 {
  margin-left: 2em;
}

.mar-b-3 {
  margin-bottom: 2em;
}

.pad-b-3 {
  margin-bottom: 2em;
}

.mar-4 {
  margin: 2.25em;
}

.pad-4 {
  padding: 2.25em;
}

.mar-t-4 {
  margin-top: 2.25em;
}

.pad-t-4 {
  margin-top: 2.25em;
}

.mar-r-4 {
  margin-right: 2.25em;
}

.pad-r-4 {
  margin-right: 2.25em;
}

.mar-l-4 {
  margin-left: 2.25em;
}

.pad-l-4 {
  margin-left: 2.25em;
}

.mar-b-4 {
  margin-bottom: 2.25em;
}

.pad-b-4 {
  margin-bottom: 2.25em;
}

.mar-5 {
  margin: 3em;
}

.pad-5 {
  padding: 3em;
}

.mar-t-5 {
  margin-top: 3em;
}

.pad-t-5 {
  margin-top: 3em;
}

.mar-r-5 {
  margin-right: 3em;
}

.pad-r-5 {
  margin-right: 3em;
}

.mar-l-5 {
  margin-left: 3em;
}

.pad-l-5 {
  margin-left: 3em;
}

.mar-b-5 {
  margin-bottom: 3em;
}

.pad-b-5 {
  margin-bottom: 3em;
}

.container {
  display: block;
  max-width: 1460px;
  width: 100%;
  margin: auto;
}

.d-flex {
  display: flex;
}
.d-flex.content-end {
  justify-content: end;
}
.d-flex.content-between {
  justify-content: space-between;
}

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