/* file imports */
/* font */
/*colors*/
/* breakpoints */
/* positions */
/* styles */
:root {
  --font_text: "Helvetica Neue", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:is(h1, h2, h3, h4, h5, h6, p, li, span) {
  cursor: default;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(62, 187, 112, 0.5);
  border-radius: 10px;
}

html {
  overflow-x: hidden;
}

body {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  font-family: var(--font_text);
  font-size: clamp(20px, 1.4vw, 28px);
  font-weight: 300;
  background-color: #121212;
  color: #DFDFDF;
  scrollbar-color: green red;
}

.light {
  background-color: rgba(115, 192, 238, 0.13);
  color: #121212 !important;
}

#circle {
  top: -12.5em;
  left: -12.5em;
  width: 25em;
  height: 25em;
  background-color: rgba(62, 187, 112, 0.5);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(40em);
}

.circle-light {
  background-color: rgba(124, 141, 187, 0.5) !important;
}

header {
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  top: 0;
  z-index: 999;
}
header a {
  text-decoration: none;
  color: #DFDFDF;
  padding: 0.5rem 1rem;
}
header a:hover {
  background-color: rgb(143, 147, 151);
  border-radius: 4rem;
}

#scroll {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 6rem auto 12rem auto;
}

.scroll-light {
  fill: #121212 !important;
  stroke: #121212 !important;
}
.scroll-light > path {
  fill: #121212 !important;
  stroke: #121212 !important;
}

#sun {
  position: fixed;
  bottom: 100px;
  right: 1.3rem;
  cursor: pointer;
  margin: 0.5rem 0;
  z-index: 99;
}
#sun :hover {
  stroke: rgb(213, 141, 17);
}
#sun :hover > path {
  stroke: rgb(213, 141, 17);
}

.fa-sun svg {
  stroke: rgb(213, 141, 17);
}
.fa-sun svg > path {
  stroke: rgb(213, 141, 17);
}
.fa-sun :hover {
  stroke: #121212 !important;
}
.fa-sun :hover > path {
  stroke: #121212 !important;
}

#paperplane {
  position: fixed;
  bottom: 40px;
  right: 1.5rem;
  cursor: pointer;
  margin: 0.5rem 0;
  z-index: 99;
}
#paperplane :hover {
  stroke: rgb(143, 147, 151);
  fill: rgb(143, 147, 151);
}
#paperplane :hover > path {
  stroke: rgb(143, 147, 151);
}

.paperplane-light svg {
  stroke: rgb(143, 147, 151);
}
.paperplane-light > path {
  stroke: rgb(143, 147, 151);
}
.paperplane-light :hover {
  stroke: rgb(143, 147, 151) !important;
}
.paperplane-light :hover > path {
  stroke: rgb(143, 147, 151) !important;
}

#menu {
  background-color: rgba(136, 149, 161, 0.8);
  border-radius: 2rem;
  padding: 1rem 0.5rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  top: 2rem;
  -webkit-backdrop-filter: blur(0.4rem);
          backdrop-filter: blur(0.4rem);
  z-index: 1;
  margin: 0 auto;
}
#menu ul {
  display: flex;
  justify-content: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
}
#menu ul li {
  margin: 0 0.2rem;
}
#menu ul li:first-child {
  margin-right: 0.5rem;
}
#menu ul li:last-child {
  margin-left: 0.5rem;
}

.menu-light {
  background-color: rgba(192, 207, 208, 0.8) !important;
}
.menu-light a {
  color: #121212 !important;
}
.menu-light a:hover {
  background-color: rgb(143, 147, 151) !important;
}

main {
  height: 65vh;
  align-items: center;
}
main section {
  max-width: 80vw;
  margin: 0 auto;
  margin-top: 30vh;
}
main section > * {
  margin-bottom: 2rem;
  list-style: none;
}

footer {
  display: flex;
  flex-direction: column;
  position: relative;
}
footer #mentions:hover {
  color: rgba(136, 149, 161, 0.8);
}
footer ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  width: 100vw;
  gap: clamp(2rem, 15vw, 20rem);
  justify-content: center;
  margin-bottom: 4rem;
}
footer a {
  text-decoration: none;
  color: #DFDFDF;
  padding: 0.5rem 1rem;
}
footer .a-footer-light {
  color: #121212 !important;
}
footer p {
  text-align: center;
  margin: 0 auto;
  font-weight: 300;
  font-size: clamp(20px, 1.4vw, 28px);
  font-size: clamp(20px, 1.4vw, 28px);
  margin-bottom: 2rem;
}
footer svg:hover g,
footer svg:hover path {
  fill: rgb(143, 147, 151) !important;
}
footer .svg-footer-light g,
footer .svg-footer-light path {
  fill: #121212 !important;
}

.light-mode {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  background-color: rgba(115, 192, 238, 0.13);
  color: #121212 !important;
}
.light-mode a:hover {
  color: rgb(143, 147, 151) !important;
}
.light-mode #job {
  border: 1px solid #121212 !important;
}
.light-mode #scroll {
  fill: #121212 !important;
  stroke: #121212 !important;
}
.light-mode #scroll > path {
  fill: #121212 !important;
  stroke: #121212 !important;
}
.light-mode #cv {
  color: #121212 !important;
}
.light-mode #cv:hover {
  color: rgb(143, 147, 151) !important;
}
.light-mode .menu-light {
  background-color: rgba(192, 207, 208, 0.8) !important;
}
.light-mode .menu-light a {
  color: #121212 !important;
}
.light-mode .menu-light a:hover {
  background-color: rgb(143, 147, 151) !important;
}

@media screen and (max-width: 1150px) {
  #sun {
    position: relative;
    top: 130px;
    left: 20px;
  }
  #paperplane {
    position: relative;
    top: 125px;
    left: 50px;
  }
}/*# sourceMappingURL=mentionsLegales.css.map */