html, body, div, span, applet, object, iframe,
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%;
  font: inherit;
  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;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

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

body {
  font: 19px/23px Montserrat, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #171c28;
  color: #ffffff;
  margin: 0 1.2rem;
}
@media screen and (min-width: 768px) {
  body {
    margin: 0 2rem;
  }
}

.flux {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.header-website {
  height: 4.5rem;
  margin-bottom: 1rem;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #171c28;
}

.section-display {
  display: flex;
  margin-bottom: 10rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .section-display.left-text-content {
    flex-direction: row;
  }
  .section-display.left-text-content .illustration {
    padding-left: 5rem;
  }
  .section-display.right-text-content {
    flex-direction: row-reverse;
  }
  .section-display.right-text-content .illustration {
    padding-right: 5rem;
  }
}

.text-content {
  display: flex;
  justify-content: center;
  align-items: start;
  flex: 1;
  flex-direction: column;
}

.title {
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.1;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 3.5rem;
  }
}

.emoji-gif img {
  width: 1em;
  height: 1em;
}

.paragraph {
  margin-bottom: 2rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .paragraph {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}

.illustration {
  flex: 1;
  margin-top: 2rem;
}
.illustration .illustration-image {
  max-width: 100%;
  display: block;
  object-fit: contain;
  margin: auto;
}

.diplome {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  padding-bottom: 2.5rem;
  margin: 2rem 0rem;
}
.diplome:hover::after {
  width: 100%;
  background-color: #aaa5ff;
}
.diplome::after {
  content: "";
  width: 70%;
  height: 2px;
  background-color: #868e96;
  position: absolute;
  bottom: 0;
  transition: all 1s ease;
}
.diplome .diplome-logo {
  max-width: 6.5rem;
  max-height: 6.5rem;
  border-radius: 100%;
}

.diplome-title {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.diplome-subtitle {
  margin-bottom: 0.7rem;
  font-weight: bold;
}

.diplome-date {
  font-style: italic;
}

footer {
  padding: 2rem;
}
footer .credits {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-hide {
  0% {
    display: flex;
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  99% {
    opacity: 0;
    transform: scale(10);
  }
  100% {
    display: none;
    opacity: 0;
    transform: scale(10);
  }
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171c28;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: loader-hide 1s forwards;
}
#loader .loader-shape {
  border: 16px solid #ffffff;
  border-top: 16px solid #55198b;
  border-radius: 50%;
  width: 7.5rem;
  height: 7.5rem;
  animation: spin 1s linear infinite;
}

.btn, .btn--secondary, .btn--primary {
  margin-top: 0.5rem;
  margin-right: 1.5rem;
  padding: 0.5rem 1rem;
  border: solid 1px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .btn, .btn--secondary, .btn--primary {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
}
.btn:hover, .btn--secondary:hover, .btn--primary:hover {
  transform: translateY(-10px);
}
.btn--primary {
  background-color: #55198b;
  color: #ffffff;
  border-color: rgb(58.5670731707, 17.2256097561, 95.7743902439);
}
.btn--primary:hover {
  background-color: #ffffff;
  color: #55198b;
}
.btn--secondary {
  background-color: #aaa5ff;
  color: #171c28;
  border-color: rgb(121.8333333333, 114, 255);
}
.btn--secondary:hover {
  background-color: #ffffff;
  color: #aaa5ff;
}

#gototop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 500;
}

.navbar {
  padding-top: 1.2rem;
  padding-bottom: 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .logo {
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .logo img {
    width: 15rem;
  }
  .sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 1;
    top: 0;
    right: -250px;
    background-color: #55198b;
    opacity: 0.9;
    padding-top: 60px;
    transition: all 0.3s ease;
  }
  .sidenav.active {
    right: 0px;
  }
  .sidenav .close {
    position: absolute;
    top: 0;
    right: 0px;
    font-size: 2rem;
  }
  .sidenav a {
    padding: 1.5rem 1rem 1rem 3rem;
    display: block;
    font-size: 1.5rem;
    color: #ffffff;
  }
}
@media screen and (min-width: 768px) {
  .logo {
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .logo img {
    width: 20rem;
  }
  .sidenav {
    width: 100%;
  }
  .sidenav .close {
    display: none;
  }
  .sidenav .nav-links {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 3rem;
  }
  .sidenav .nav-links .nav-link {
    font-size: 1.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
  }
  .sidenav .nav-links .nav-link:hover {
    transform: scale(1.2);
  }
}
@keyframes showGrowth {
  0% {
    padding-right: 0%;
  }
  100% {
    padding-right: 1%;
  }
}
.competences-bars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.competence-bar-bar {
  background-color: #ffffff;
  width: 100%;
  height: 2rem;
  border-radius: 10px;
  border: 1px solid;
}
.competence-bar-bar .competence-bar-bar-fill {
  background-color: #aaa5ff;
  height: 100%;
  border-radius: 10px;
  animation: showGrowth 1s ease infinite alternate;
}

.stack-technique-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .stack-technique-icons {
    font-size: 2.5rem;
  }
}
.stack-technique-icons i {
  transition: all 0.3s ease;
}
.stack-technique-icons i:hover {
  cursor: pointer;
  color: #aaa5ff;
  transform: scale(1.2);
}

.menu-icon {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .menu-icon {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */