@charset "UTF-8";
/* --------- VARIABLES --------- */
/* --------- RESET --------- */
h1,
h2,
h3,
h4 {
  font-weight: normal;
  margin: 0;
  font-size: unset;
}

body,
p,
figure,
footer,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

li {
  list-style: none;
  padding: 0;
}

button {
  all: initial;
}

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

/* --------- FONT --------- */
@font-face {
  font-family: "LeagueGothic";
  src: url("../fonts/LeagueGothic-Regular.woff2") format("woff2"), url("../fonts/LeagueGothic-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GeologicaRoman";
  src: url("../fonts/GeologicaRoman-Thin.woff2") format("woff2"), url("../fonts/GeologicaRoman-Thin.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GeologicaRoman-SemiBold";
  src: url("../fonts/GeologicaRoman-SemiBold.woff2") format("woff2"), url("../fonts/GeologicaRoman-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "GeologicaRoman", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.title {
  font-family: "LeagueGothic", sans-serif;
  line-height: 1.2;
}
.title--l {
  font-size: 101px;
}
.title--m {
  font-size: 57px;
}
.title--s {
  font-size: 24px;
  font-family: "GeologicaRoman-SemiBold", sans-serif;
}

a {
  font-family: "GeologicaRoman-SemiBold", sans-serif;
}

small {
  font-size: 14px;
}

/* --------- VISUALS --------- */
html {
  scroll-behavior: smooth;
}

body {
  color: #482d3b;
  background-color: #fcfafa;
}

img {
  max-width: 100%;
}

main {
  padding: 0 18px;
}

a {
  color: #4f39c7;
  transition: color 0.2s;
}
a:hover, a:focus, a:active {
  color: #db6f6f;
}

.nav {
  padding: 18px;
  background-color: #fabc2a;
}
.nav__ul {
  display: flex;
  justify-content: space-evenly;
}
.nav__el a {
  font-size: 24px;
  color: #482d3b;
}
.nav__el a:hover, .nav__el a:focus, .nav__el a:active {
  color: #85617f;
}

.footer {
  padding: 18px;
  background-color: #fabc2a;
  text-align: center;
}
.footer__ul {
  display: flex;
  justify-content: space-evenly;
}
.footer__el a {
  color: #482d3b;
}
.footer__el a:hover, .footer__el a:focus, .footer__el a:active {
  color: #85617f;
}

.title--l {
  margin-left: -4px;
}
.title--m {
  background-color: #4f39c7;
  color: #fcfafa;
  margin: 18px -18px;
  padding: 18px;
}

.section {
  margin-bottom: 57px;
}
.section__projets .projet:not(:last-child) {
  border-bottom: 5px dashed #d4b7b7;
}

.projet {
  margin: 18px 0;
  padding: 18px 0;
}
.projet img {
  margin-top: 18px;
  border: #fabc2a solid 2px;
}

.list {
  margin-top: 18px;
}
.list__el {
  list-style: "⎻ " inside;
}

.avatar {
  display: block;
  margin: 18px auto;
  max-width: 179px;
  border-radius: 100%;
  border: #d4b7b7 dashed 5px;
  animation: rotation 15s linear infinite;
}
.avatar::after {
  border: #d4b7b7 dashed 5px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.secret {
  margin: 18px 0;
}
.secret__trigger {
  display: inline-block;
  cursor: pointer;
  animation: pulse 0.5s infinite alternate cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.secret__caption {
  background-color: #482d3b;
  color: #fcfafa;
  padding: 14px;
  margin-top: -14px;
}
.secret--fadein {
  opacity: 0;
  animation: fadeInAnimation ease-in 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* --------- EXTRA --------- */
.hidden {
  display: none;
}

body {
  opacity: 0;
  animation: fadeInAnimation ease 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeout {
  animation: fadeOutAnimation ease-in 0.2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes fadeOutAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.disabled a {
  pointer-events: none;
}

.active {
  border-bottom: #482d3b 5px solid;
  transition: border-color 0.2s;
}
.active:hover, .active:focus, .active:active {
  border-color: #85617f;
}

/* --------- TAB --------- */
/* --------- DESKTOP --------- */
@media screen and (min-width: 704px) {
  main {
    max-width: 704px;
    margin: auto;
    padding: 18px;
  }
  .title--l {
    font-size: 179px;
  }
}/*# sourceMappingURL=style.css.map */