body {
  color: #000;
  background-color: #fcdbde;
  max-width: 1200px;
}

/** CSS MIN WIDTH 450PX**/
/** menu burger **/
/**icone burger**/
.menu {
  position: absolute;
  top: 20px;
  right: 40px;
}

.menu-icon {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.menu-icon_line {
  width: 50px;
  height: 10px;
  background-color: black;
}

.menu-icon_line_none {
  opacity: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-45deg);
  }
}
@keyframes slide {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg) translate(0px, 20px);
  }
}
.change {
  animation: rotate 1000ms forwards;
}

.slide {
  animation: slide 1000ms forwards;
}

/** liste **/
.menu-list {
  width: 350px;
  height: 120px;
}

.menu-list ul {
  display: inline-block flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
}

nav {
  width: 200px;
  height: 80px;
  margin: auto 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

nav ul li {
  list-style: none;
  color: #000;
  font-size: 1.2em;
}

nav li a {
  text-decoration: none;
  color: #000;
}

.menu-list-display {
  display: none;
  transition: 1s;
}

/** header **/
header {
  margin-top: 30px;
}

h1 {
  font-family: "Cy", serif;
  font-weight: 800;
  font-size: 4em;
  margin-left: 10px;
  overflow: hidden;
  color: #000;
}

/** main **/
main {
  max-width: 700px;
  margin-left: 10px;
}

h2 {
  font-family: "Cy", sans-serif;
  font-weight: 600;
  font-size: 1.5em;
  color: #fff;
}

p, li {
  font-family: "halcom", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.2em;
  color: #000;
}

li {
  list-style: none;
}

strong, strong a {
  font-family: "halcom", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1em;
  color: #fc4103;
}

.line {
  width: 500px;
  height: 3px;
  background-color: #000;
}

h3 {
  font-family: "Cy";
  font-style: normal;
  font-weight: 600;
  font-size: 3em;
  margin-bottom: 15px;
  color: #000;
}

.skills {
  display: flex;
  flex-direction: row;
}

.skills img {
  padding-right: 4px;
}

.clients {
  font-family: "Cy";
  font-style: normal;
  font-weight: 600;
  font-size: 2.6em;
}

.clients span {
  font-family: "halcom", sans-serif;
  font-style: italic;
  font-size: 0.6em;
}

#tocontact {
  margin-top: 200px;
}

/** footer **/
footer {
  height: 40px;
}

.sticker {
  position: fixed;
  bottom: 10px;
  right: 10px;
}

.sticker-invert {
  filter: invert(70%);
}

/**404 NOT FOUND**/
.notfound {
  margin: auto;
  justify-content: center;
  color: #fc4103;
}

/** CSS MOBILE MAX WIDTH 425PX**/
@media screen and (max-width: 425px) {
  body {
    color: #000;
    background-color: #fcdbde;
    max-width: 425px;
  }

  header {
    color: #000;
    height: 120px;
  }

  /**icone burger**/
  .menu {
    position: absolute;
    top: 20px;
    right: 40px;
  }

  .menu-icon {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .menu-icon_line {
    width: 50px;
    height: 10px;
    background-color: black;
  }

  .menu-icon_line_none {
    opacity: 0;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-45deg);
    }
  }
  @keyframes slide {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(90deg) translate(0px, 20px);
    }
  }
  .change {
    animation: rotate 1000ms forwards;
  }

  .slide {
    animation: slide 1000ms forwards;
  }

  /** liste **/
  .menu-list {
    width: 350px;
    height: 120px;
    margin: auto;
  }

  .menu-list ul {
    display: inline-block flex;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
  }

  nav ul li {
    list-style: none;
    color: #000;
    font-size: 1.2em;
  }

  nav li a {
    text-decoration: none;
    color: #000;
  }

  .menu-list-display {
    display: none;
    transition: 1s;
  }

  /** nav **/
  nav {
    width: 350px;
    height: 120px;
    margin: auto;
  }

  h4 {
    font-family: "Cy", serif;
    font-weight: 800;
    font-size: 1.2em;
    font-style: normal;
  }

  h4 a {
    text-decoration: none;
    color: #000;
  }

  h1 {
    display: inline-block;
    position: absolute;
    top: 140px;
    font-family: "Cy", serif;
    font-weight: 800;
    font-size: 3em;
    margin-left: 10px;
    margin-top: 10px;
    color: #000;
  }

  /** main mobile **/
  main {
    max-width: 425px;
    margin-left: 10px;
    position: absolute;
    top: 320px;
  }

  h2 {
    font-family: "Cy", sans-serif;
    font-weight: 600;
    font-size: 1.8em;
    color: #fff;
  }

  p, li {
    font-family: "halcom", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 0.8em;
    color: #000;
  }

  li {
    list-style: none;
  }

  strong, strong a {
    font-family: "halcom", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1em;
    color: #910660;
  }

  .line {
    width: 500px;
    height: 3px;
    background-color: #000;
  }

  h3 {
    font-family: "Cy";
    font-style: normal;
    font-weight: 600;
    font-size: 1.9em;
    margin-bottom: 15px;
    color: #000;
  }

  .skills {
    display: flex;
    flex-direction: row;
  }

  .skills img {
    padding-right: 4px;
    width: 40px;
  }

  .clients {
    font-family: "Cy";
    font-style: normal;
    font-weight: 600;
    font-size: 2.6em;
  }

  .clients span {
    font-family: "halcom", sans-serif;
    font-style: italic;
    font-size: 0.6em;
  }

  h2 {
    font-family: "Cy", sans-serif;
    font-weight: 600;
    font-size: 2em;
    color: #fff;
  }

  .line {
    width: 250px;
    height: 3px;
    background-color: #000;
  }

  footer {
    position: fixed;
    bottom: 5px;
    right: 5px;
  }
}

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