@charset "UTF-8";
body {
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #444;
}

.title {
  color: #e41612;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: #fafafa;
}

body {
  background-color: #121212;
  font-family: "arsenica-variable", serif;
  color: #fafafa;
  position: relative;
}

html, body {
  width: 100%;
  min-width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.cursor--center, .cursor--circle {
  display: none;
}

.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 23px 23px;
  position: fixed;
  box-sizing: border-box;
  width: 100%;
  z-index: 10;
  background: transparent;
}

.menu--links {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: #121212;
  color: #fafafa;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  gap: 30px;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  text-transform: uppercase;
}

.menu--links__el:hover {
  transition: 0.5s;
}

.menu--burger {
  z-index: 1000;
}

.menu--links__hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.menu--logo {
  width: 50px;
  height: 40px;
  background-image: url(../assets/images/logo.svg);
  background-size: cover;
  z-index: 1000;
  display: none;
}

.intro {
  height: 100vh;
  position: relative;
  padding: 23px;
  font-weight: 400;
  font-size: 49px;
  background-image: url("../assets/images/background_pc.webp");
  -o-object-fit: cover;
     object-fit: cover;
}

.intro--gradient {
  width: 100%;
  height: 25%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent, #121212);
}

.intro--pres {
  bottom: 10%;
  position: absolute;
  z-index: 2;
}

.intro--pres__text01 {
  font-weight: 400;
  font-size: clamp(3.0625rem, 0.75rem + 10.2778vw, 10rem);
}

.intro--pres__name {
  font-weight: 700;
}

.intro--pres__text02 {
  font-weight: 700;
  display: block;
  font-size: clamp(3.0625rem, 0.75rem + 10.2778vw, 10rem);
}

.intro--pres__work {
  font-size: clamp(2.5625rem, 1.0625rem + 6.6667vw, 7.0625rem);
  font-style: italic;
  font-weight: 300;
}

.about {
  height: 100vh;
  padding: 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about--title {
  font-size: 34px;
  font-weight: 600;
  min-width: 280px;
}

.about--title span {
  position: relative;
}

.about--title span::before {
  content: "Student";
  color: #b34949;
  -webkit-animation: words 20s infinite;
          animation: words 20s infinite;
}

.about--title span::after {
  content: "";
  position: absolute;
  width: calc(100% + 8px);
  height: 110%;
  background-color: #121212;
  border-left: 2px solid #b34949;
  right: -8px;
  -webkit-animation: cursor 0.8s infinite, typing 20s steps(14) infinite;
          animation: cursor 0.8s infinite, typing 20s steps(14) infinite;
}

@-webkit-keyframes cursor {
  to {
    border-left: 2px solid #121212;
  }
}

@keyframes cursor {
  to {
    border-left: 2px solid #121212;
  }
}
@-webkit-keyframes words {
  0%, 20% {
    content: "Student";
  }
  21%, 40% {
    content: "Belgian";
  }
  41%, 60% {
    content: "Designer";
  }
  61%, 80% {
    content: "Developer";
  }
  81%, 100% {
    content: "Creator";
  }
}
@keyframes words {
  0%, 20% {
    content: "Student";
  }
  21%, 40% {
    content: "Belgian";
  }
  41%, 60% {
    content: "Designer";
  }
  61%, 80% {
    content: "Developer";
  }
  81%, 100% {
    content: "Creator";
  }
}
@-webkit-keyframes typing {
  10%, 15%, 30%, 35%, 50%, 55%, 70%, 75%, 90%, 95% {
    width: 0;
  }
  5%, 20%, 25%, 40%, 45%, 60%, 65%, 80%, 85% {
    width: calc(100% + 8px);
  }
}
@keyframes typing {
  10%, 15%, 30%, 35%, 50%, 55%, 70%, 75%, 90%, 95% {
    width: 0;
  }
  5%, 20%, 25%, 40%, 45%, 60%, 65%, 80%, 85% {
    width: calc(100% + 8px);
  }
}
.about--text {
  font-size: 23px;
  max-width: 405px;
  font-weight: 300;
}

.about--text:first-of-type {
  margin-top: 72px;
  margin-bottom: 34px;
}

.about--links {
  margin: 72px 0 0 0;
  width: 100%;
  height: auto;
}

.links--btn {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 23px;
  transition: all ease-out 0.4s;
}
.links--btn:hover {
  transform: scale(1.3);
}

.about--links__github {
  background-image: url("../assets/images/github.svg");
}

.about--links__linkedin {
  background-image: url("../assets/images/linkedin.svg");
}

.projects {
  padding-top: 34px;
  height: auto;
  text-align: center;
}

.projects--title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 87px 0;
}

.projects--title h2 {
  font-size: 34px;
  margin-left: 34px;
  font-style: italic;
  font-weight: 400;
}

.projects--title__tir {
  font-weight: 700;
}

.project {
  margin-bottom: 72px;
}

.project:last-of-type {
  margin-bottom: 87px;
}

.project--links {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
}

.project--links img {
  width: 250px;
  height: 250px;
  border-radius: 500px;
  transition: all ease-out 0.4s;
}

.absolute {
  position: absolute;
}

.project--link {
  display: block;
  width: 300px;
  height: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-animation: spin 20s linear infinite;
          animation: spin 20s linear infinite;
  z-index: 5;
  transition: all ease-out 0.4s;
}

.link--janus {
  background-image: url("../assets/images/deco_janus.webp");
}

.link--data {
  background-image: url("../assets/images/deco_data.webp");
}

.link--fiction {
  background-image: url("../assets/images/deco_df.webp");
}

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.projects--title h2 {
  font-size: 47px;
  margin-left: 47px;
}

.project h3 {
  font-weight: 300;
  margin-top: 16px;
  font-size: 23px;
}

.project--links__title {
  display: none;
}

.credits--content {
  margin: 0 28px 60px 28px;
}

.credits--title {
  font-size: clamp(3.75rem, 1.9541rem + 7.9819vw, 7.0625rem);
  color: #fafafa;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin: 100px 16px 60px 16px;
}

.credits--title__big {
  font-size: clamp(2.125rem, 1.3456rem + 3.4639vw, 3.5625rem);
  margin-bottom: 41px;
}

.credits--title__big span {
  color: #b34949;
  font-size: clamp(3.0625rem, 2.012rem + 4.6687vw, 5rem);
}

.credits--title__small {
  font-size: clamp(1.75rem, 1.3434rem + 1.8072vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 23px;
}

.credits--text {
  max-width: 344px;
  font-size: clamp(1.1875rem, 0.8486rem + 1.506vw, 1.8125rem);
}

.credits--text a {
  color: #b34949;
}

.credits--text:first-of-type {
  margin-bottom: 41px;
}

.credits--line {
  display: none;
}

.footer {
  margin-top: 72px;
  height: auto;
  padding: 28px 0;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}

.footer--line {
  position: absolute;
  top: 0;
  margin: 0 auto;
  height: 2px;
  width: 200px;
  background-color: #fafafa;
}

.footer--content {
  width: 60%;
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.footer--content__credits {
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  transition: all ease-out 0.4s;
}

.footer--content__credits:hover {
  -webkit-text-decoration: underline #fafafa;
          text-decoration: underline #fafafa;
}

.menu--case {
  background-color: #121212;
}

.title {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title--prj {
  color: #fafafa;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-size: clamp(5.4375rem, 2.5417rem + 12.8704vw, 14.125rem);
}

.chapter {
  padding: 0 clamp(1rem, -0.7096rem + 7.598vw, 2.9375rem);
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 41px;
}

.chapter--text {
  grid-column: 1/3;
  font-size: clamp(1rem, 0.75rem + 1.1111vw, 1.75rem);
}

.chapter--text__big {
  font-size: clamp(1.4375rem, 1.0833rem + 1.5741vw, 2.5rem);
  max-width: 800px;
}

.chapter--deco {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin: 41px 0;
}

.chapter--deco__var {
  flex-direction: row-reverse;
}

.chapter--deco__number {
  display: flex;
  flex-direction: column;
}

.chapter--number {
  font-size: clamp(2.5625rem, -0.5257rem + 13.7255vw, 6.0625rem);
  font-weight: 400;
  justify-content: center;
  align-items: center;
}

.chapter--number__one {
  opacity: 0.1;
}

.chapter--number__two {
  opacity: 0.5;
  margin: -20px 0;
}

.chapter--number__thr {
  opacity: 0.9;
}

.chapter--deco__img {
  width: auto;
}

.chapter--deco__img img {
  width: 100%;
  text-align: center;
}

.content {
  margin-bottom: clamp(5.4375rem, 3.9167rem + 6.7593vw, 10rem);
}

.case--btn {
  font-size: 23px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 72px;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  transition: all ease-out 0.4s;
}
.case--btn:hover {
  -webkit-text-decoration: underline #fafafa;
          text-decoration: underline #fafafa;
}
.case--btn::after, .case--btn::before {
  content: "";
  width: 23px;
  height: 2px;
  background-color: #b34949;
  transition: all ease-out 0.4s;
}
.case--btn::before {
  margin-right: 11px;
}
.case--btn::after {
  margin-left: 11px;
}

.case--btn:hover::before, .case--btn:hover::after {
  width: 60px;
}

@media (min-width: 768px) {
  .intro {
    padding: 0;
  }

  .intro--pres {
    margin: 47px;
    line-height: 300%;
  }

  .about {
    padding: 0 47px;
  }

  .about--title {
    font-size: 47px;
  }

  .about--text {
    max-width: 650px;
    font-size: 29px;
  }

  .about--text:first-of-type {
    margin-top: 76px;
    margin-bottom: 43px;
  }

  .about--links {
    margin-top: 76px;
  }

  .links--btn {
    width: 50px;
    height: 50px;
    margin-right: 29px;
  }

  .projects {
    padding: 123px 0;
  }

  .project--links img {
    width: 300px;
    height: 300px;
  }

  .project--link {
    width: 350px;
    height: 350px;
  }

  .project h3 {
    margin-top: 18px;
    font-size: 29px;
  }

  .project {
    margin-bottom: 97px;
  }

  .projects--title {
    margin: 0 0 97px 0;
  }

  .footer {
    margin-top: 0;
  }

  .menu--burger {
    display: none;
  }

  .menu--links {
    position: relative;
    background-color: transparent;
    height: auto;
    width: auto;
    flex-direction: row;
    gap: 32px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    padding: 20px;
  }

  .menu--links__el {
    transition: all;
  }

  .menu--links__el::before {
    content: "—";
    color: #b34949;
    font-weight: 900;
    opacity: 0;
    transition: all ease-out 0.6s;
  }

  .menu--links__el::before {
    margin-right: 5px;
  }

  .menu--links__el:hover::before {
    opacity: 1;
  }
  .menu--links__el:hover::after {
    opacity: 1;
  }

  .menu--links__hidden {
    transform: translateY(0);
    opacity: 1;
  }

  .menu {
    padding: 20px 57px;
  }

  .chapter {
    margin: 0 47px 97px 47px;
  }

  .chapter--number {
    font-size: 97px;
  }

  .chapter--number__two {
    margin: -50px 0;
  }

  .chapter--deco {
    margin: 0;
  }

  .case--btn {
    font-size: 32px;
    margin-top: 81px;
  }
  .case--btn::after, .case--btn::before {
    width: 32px;
  }
  .case--btn::before {
    margin-right: 12px;
  }
  .case--btn::after {
    margin-left: 12px;
  }

  .case--btn:hover::before, .case--btn:hover::after {
    width: 67px;
  }

  .menu--cred {
    background-color: transparent;
  }

  .credits--text {
    max-width: 500px;
  }

  .credits {
    padding: 0 47px;
  }
}
@media (min-width: 1024px) {
  * {
    cursor: none;
  }

  .cursor--center {
    width: 10px;
    height: 10px;
    background-color: #b34949;
  }

  .cursor--circle {
    width: 40px;
    height: 40px;
    border: 2px solid #b34949;
    background-color: transparent;
  }

  .cursor--center, .cursor--circle {
    pointer-events: none;
    position: fixed;
    transform: translate(-50%, -50%);
    z-index: 100000;
    border-radius: 50px;
    display: inherit;
  }

  .menu--burger {
    display: none;
  }

  .menu--links {
    position: relative;
    background-color: transparent;
    height: auto;
    width: auto;
    flex-direction: row;
    gap: 32px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    padding: 20px;
  }

  .menu--links__el {
    transition: all;
  }

  .menu--links__el::before {
    content: "—";
    color: #b34949;
    font-weight: 900;
    opacity: 0;
    transition: all ease-out 0.6s;
  }

  .menu--links__el::before {
    margin-right: 5px;
  }

  .menu--links__el:hover::before {
    opacity: 1;
  }
  .menu--links__el:hover::after {
    opacity: 1;
  }

  .menu--links__hidden {
    transform: translateY(0);
    opacity: 1;
  }

  .menu {
    padding: 20px 57px;
  }

  .intro {
    background-size: cover;
  }

  .about {
    padding: 0 160px;
  }

  .about--title {
    font-size: 57px;
  }

  .div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 80px;
  }

  .projects {
    padding: 160px 80px 0 80px;
    padding-top: 160px;
    padding-bottom: 0;
  }

  .projects--title h2 {
    font-size: 57px;
    margin-left: 80px;
  }

  .project:last-child {
    margin: 0;
    margin-bottom: 160px;
  }

  .project {
    margin: 0;
    margin-bottom: 160px;
  }

  .project--links__title {
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(250, 250, 250, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    width: 300px;
    height: 300px;
    border-radius: 500px;
    text-transform: uppercase;
    font-size: 32px;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .project--links__img {
    transition: all 0.4s ease;
  }

  .project--links:hover .project--links__img {
    z-index: 100;
  }

  .project--links:hover .project--links__title {
    opacity: 1;
  }

  .footer {
    margin-top: 0;
  }

  .project--link {
    z-index: 10000;
  }

  .title--prj {
    width: auto;
  }

  .title {
    flex-direction: row;
  }

  .chapter {
    margin: 0 80px 160px 160px;
  }

  .chapter--number {
    font-size: 160px;
  }

  .chapter--number__two {
    margin: -100px 0;
  }

  .case--btn {
    font-size: 40px;
    margin-top: 118px;
  }
  .case--btn::after, .case--btn::before {
    width: 40px;
  }
  .case--btn::before {
    margin-right: 14px;
  }
  .case--btn::after {
    margin-left: 14px;
  }

  .case--btn:hover::before, .case--btn:hover::after {
    width: 80px;
  }

  .separator {
    margin: 160px 0;
  }

  .credits {
    padding: 0 160px;
  }

  .credits--text {
    max-width: 600px;
  }
}

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