@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
@font-face {
  font-family: "Cascadia Code";
  src: url("../fonts/CascadiaCode.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
body {
  background-color: #2c2c2c;
}

strong {
  color: #08a008;
}

.button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 20px 30px;
  font-family: "JetBrains Mono", monospace;
  color: #e2e2e2;
  border: 1px solid #08a008;
  background: transparent;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.31);
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
  cursor: pointer;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #08a008;
  transition: left 0.4s ease-in-out;
}
.button span {
  position: relative;
  z-index: 1;
  font-size: 1rem;
}
.button:hover::before {
  left: 0;
}
.button:hover span {
  transform: scale(1.05);
}

.decorative-squares {
  width: 150px;
  height: 150px;
  background-image: url("../img/decorative-squares.svg");
  opacity: 0.7;
  background-position: center;
  background-size: cover;
  position: absolute;
}

.decorative-circles {
  width: 100px;
  height: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  place-items: center;
  position: absolute;
}
.decorative-circles .circle {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #e2e2e2;
  opacity: 0.7;
}

.title-box {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 20px 0px;
}
.title-box h2 {
  font-family: "JetBrains Mono", monospace;
  color: #e2e2e2;
  font-size: clamp(20px, 6vw, 27px);
  margin-right: 10px;
}
.title-box h2 span {
  color: #08a008;
}
.title-box .green-line {
  height: 2px;
  border-radius: 20px;
  width: 40%;
  background: #08a008;
}

.terminal {
  width: 80%;
  height: -moz-fit-content;
  height: fit-content;
  background: #1c1c1c;
  align-self: center;
  border-radius: 7px;
  box-shadow: 0px 3px 7px 1px rgba(0, 0, 0, 0.37);
  padding: 30px;
  color: #08a008;
  font-family: "Cascadia Code", monospace;
}

.main-container {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: auto;
  padding: 20px;
  overflow-x: hidden;
}
.main-container .container-box {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

header h1 {
  color: #08a008;
  font-family: "JetBrains Mono", monospace;
  margin: 40px 0px;
}
header .window {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 3px 7px 1px rgba(0, 0, 0, 0.37);
  border-radius: 7px;
  max-width: 700px;
  align-self: center;
}
header .window .top-bar {
  width: 100%;
  height: 30px;
  background-color: #676767;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  padding: 5px;
}
header .window .top-bar .buttons {
  width: 70px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}
header .window .top-bar .buttons .top-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
header .window .top-bar .buttons .top-button:first-child {
  background-color: rgb(213, 12, 12);
}
header .window .top-bar .buttons .top-button:nth-child(2) {
  background-color: rgb(255, 162, 0);
}
header .window .top-bar .buttons .top-button:nth-child(3) {
  background-color: rgb(104, 193, 26);
}
header .window .low-text {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  background-color: #1c1c1c;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  color: #e2e2e2;
  font-family: "Cascadia Code", monospace;
}
header .decorative-squares {
  right: -200px;
}
header .decorative-circles {
  right: -260px;
  top: 60px;
}

.separator {
  height: 80px;
  width: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.separator .dot {
  width: 4px;
  height: 4px;
  background-color: #d1d1d1;
  border-radius: 50%;
}

.journey {
  margin-bottom: 20px;
}
.journey .decorative-diamonds {
  width: 100px;
  height: 100px;
  position: absolute;
  opacity: 0.5;
  left: -250px;
  top: 150px;
}
.journey .decorative-diamonds .square {
  width: 100%;
  height: 100%;
  border: 2px solid #e2e2e2;
  position: absolute;
}
.journey .decorative-diamonds .square:first-child {
  transform: rotate(45deg);
}
.journey .button {
  align-self: center;
  margin-top: 20px;
}

.skills .container {
  display: flex;
  flex-direction: column;
}
.skills .skills-container {
  display: flex;
  flex-direction: column;
  align-self: center;
  margin-bottom: 20px;
}
.skills .skills-container .skill {
  max-width: 250px;
  border: 1px solid #e2e2e2;
  margin: 10px 0px;
}
.skills .skills-container .skill .skill-title, .skills .skills-container .skill .skill-list {
  padding: 15px;
  font-family: "JetBrains Mono", monospace;
  color: #e2e2e2;
}
.skills .skills-container .skill .skill-title {
  border-bottom: 1px solid #e2e2e2;
  color: #08a008;
}
.skills .skills-container .diamond {
  align-self: center;
  width: 10px;
  height: 10px;
  background: #e2e2e2;
  transform: rotate(45deg);
  margin: 10px 0px;
  animation: flash 1s ease-in-out infinite;
}
.skills .skills-container .diamond:nth-child(1) {
  animation-delay: 0s;
}
.skills .skills-container .diamond:nth-child(2) {
  animation-delay: 0.2s;
}
.skills .skills-container .diamond:nth-child(3) {
  animation-delay: 0.4s;
}
.skills .skills-container .diamond:nth-child(4) {
  animation-delay: 0.6s;
}
@keyframes flash {
  0% {
    background-color: #e2e2e2;
  }
  30% {
    background-color: #08a008;
  }
  100% {
    background-color: #e2e2e2;
  }
}
.skills .soft-skills-container {
  display: flex;
  flex-direction: column;
}
.skills .soft-skills-container .title {
  font-size: 20px;
  font-family: "JetBrains Mono", monospace;
  color: #08a008;
  margin-bottom: 20px;
}
.skills .soft-skills-container .terminal {
  align-self: center;
}
.skills .decorative-squares {
  top: 480px;
  left: -250px;
  transform: rotate(-45deg);
}
.skills .decorative-circles {
  right: -250px;
  transform: rotate(45deg) scale(1.5);
  top: 240px;
}

.project .projects-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.project .projects-box .project {
  width: 100%;
  max-width: 350px;
  padding: 25px;
  border-radius: 10px;
  background-color: #1c1c1c;
  color: #e2e2e2;
  font-family: "JetBrains Mono", monospace;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.31);
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 20px 0px;
}
.project .projects-box .project .img, .project .projects-box .project .title {
  margin-bottom: 25px;
}
.project .projects-box .project .img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  align-self: center;
  background-size: cover;
}
.project .projects-box .project .img:hover {
  cursor: pointer;
  filter: opacity(0.7);
}
.project .projects-box .project .img-1 {
  background-image: url("../img/macon.jpg");
}
.project .projects-box .project .img-2 {
  background-image: url("../img/projet_2.jpg");
}
.project .projects-box .project .img-3 {
  background-image: url("../img/garage.png");
}
.project .projects-box .project .img-4 {
  background-image: url("../img/roll_the_dice.png");
  background-position: unset;
  background-position-x: -50px;
}
.project .projects-box .project .title {
  color: #08a008;
  display: block;
  font-family: "Cascadia Code", monospace;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}
.project .projects-box .project .title:hover {
  letter-spacing: 1px;
  color: #066f06;
}
.project .projects-box .project::after, .project .projects-box .project::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), transparent 70%, #08a008, rgb(255, 12, 122));
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: 4s spin linear infinite;
}
.project .projects-box .project:nth-child(2)::after, .project .projects-box .project:nth-child(2)::before {
  animation-delay: 1s;
}
.project .projects-box .project:nth-child(3)::after, .project .projects-box .project:nth-child(3)::before {
  animation-delay: 2s;
}
.project .projects-box .project::before {
  filter: blur(1.5rem);
  opacity: 0.5;
}
@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

.contact p {
  font-family: "JetBrains Mono", monospace;
  color: #e2e2e2;
  margin-bottom: 20px;
}
.contact .button {
  display: block;
  align-self: center;
  margin-bottom: 20px;
  width: 235px;
  text-align: center;
}
.contact .button::before {
  z-index: -1;
}

@media screen and (min-width: 900px) {
  .skills .container {
    flex-direction: row;
  }
  .skills .container .skills-container {
    width: 400px;
  }
  .skills .container .skills-container .diamond {
    display: none;
  }
  .skills .container .soft-skills-container {
    align-items: center;
    justify-content: center;
  }
  .skills .container .soft-skills-container .title {
    align-self: flex-start;
  }
  .skills .container .soft-skills-container .terminal {
    width: 400px !important;
  }
}
@media screen and (min-width: 1100px) {
  .main-container {
    max-width: 1000px;
  }
  .projects-box {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    gap: 20px;
    margin: 40px 0px 20px;
  }
  .projects-box .project {
    margin: unset !important;
    height: 100%;
  }
}
@media screen and (min-width: 1400px) {
  .main-container {
    overflow-x: unset;
  }
}/*# sourceMappingURL=style.css.map */