* {
  box-sizing: border-box;
  align-content: center;
  align-self: center;
}

a {
  color: unset;
  font-style: normal;
  text-decoration: none;
}

svg {
  display: block;
}

body, html {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #007BFF;
}

.displaynone {
  display: none;
}

i span {
  font-style: normal;
  margin-left: 10px;
}

button {
  padding: 10px 20px 10px 20px;
  border: solid 1px #F4F4F9;
  border-radius: 5px;
  transition: padding 350ms ease, background-color 350ms ease, cursor 350ms ease, color 350ms ease, box-shadow 350ms ease;
}

button:hover {
  background-color: #F4F4F9;
  padding: 15px 30px 15px 30px;
  cursor: pointor;
}

.header {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 15px;
  width: 100%;
  background-color: #F4F4F9;
  padding: 15px 20px 15px 20px;
  border-bottom: solid 1px #007BFF;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 997;
}
@media (min-width: 576px) {
  .header {
    grid-template-columns: 4fr 2fr 1fr;
  }
}
@media (min-width: 768px) {
  .header {
    grid-template-columns: 3fr 5fr 1fr;
    gap: 50px;
  }
}
@media (min-width: 992px) {
  .header {
    grid-template-columns: 6fr 4fr 1fr;
    border-color: #FF7F11;
  }
}
@media (min-width: 1200px) {
  .header {
    grid-template-columns: 8fr 4fr 1fr;
  }
}

.header__logo {
  height: 60px;
}

.header__button {
  display: none;
  transition: display 0.5s ease;
}
@media (min-width: 576px) {
  .header__button {
    display: grid;
  }
}
@media (min-width: 768px) {
  .header__button {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

.header__button--primary {
  display: none;
  background-color: #007BFF;
  box-shadow: 1px 1px 5px #FF7F11;
  color: #F4F4F9;
}
@media (min-width: 768px) {
  .header__button--primary {
    display: block;
  }
}

.header__button--primary:hover {
  color: #007BFF;
  box-shadow: 1px 1px 5px #007BFF;
}

.header__button--secondary {
  background-color: #FF7F11;
  box-shadow: 1px 1px 5px #007BFF;
  color: #F4F4F9;
}

.header__button--secondary:hover {
  color: #FF7F11;
  box-shadow: 1px 1px 5px #FF7F11;
}

.header__icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  transition: display 0.5s ease;
}

.main {
  margin-top: 90px;
  display: flex;
  flex-wrap: wrap;
  background-color: #F4F4F9;
  padding: 30px;
}

.project img {
  width: 100%;
  border-radius: 8px;
}

.project {
  background-color: rgba(255, 127, 17, 0.15);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.45);
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  padding: 40px;
}

h1 {
  text-align: center;
  color: #007BFF;
}

.main a {
  text-decoration: underline;
  font-style: italic;
  color: #007BFF;
}

.navbar {
  display: grid;
  align-self: start;
  align-content: flex-start;
  background-color: #007BFF;
  box-shadow: 1px 0px 5px #F4F4F9;
  width: 80%;
  height: 100vh;
  position: fixed;
  left: -100%;
  top: 0;
  padding: 30px;
  overflow-y: auto;
  z-index: 998;
  transition: top 1s ease, left 1s ease;
}
@media (min-width: 992px) {
  .navbar {
    width: 100%;
    left: 0;
    height: min-content;
    top: 0px;
    z-index: 996;
    padding: 10px 30px 0px 30px;
    flex-wrap: wrap;
  }
}

.navbarlist {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .navbarlist {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}

.navbarlist__item {
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .navbarlist__item--hide {
    display: none;
  }
}

.navbarlist__item button {
  width: 100%;
  text-align: left;
  color: #007BFF;
  font-size: 1.1em;
}

.navbar h2 {
  color: white;
  font-size: 1.2em;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .navbar h2 {
    display: none;
  }
}

.footer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-self: start;
  align-content: flex-start;
  justify-content: space-between;
  padding: 30px;
  border-top: solid 1px #007BFF;
  background-color: #333333;
  color: #F4F4F9;
}

.footer > section {
  width: 100%;
  margin-top: 0;
  align-self: start;
  align-content: flex-start;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer > section {
    width: 46%;
  }
}
@media (min-width: 992px) {
  .footer > section {
    width: 30%;
  }
}

.footer > section > ul {
  list-style: none;
  margin: 0;
  padding: 20px;
}

.footer > section > i {
  display: flex;
  width: 100%;
  background-color: #F4F4F9;
  color: #333333;
  padding: 15px 20px 15px 20px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
}

.footer > section > ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

#contact ul {
  padding-bottom: 0px;
}

#socialMedia {
  width: 100%;
  margin-bottom: 15px;
}

#socialMedia > ul {
  width: 200px;
  margin: auto;
  padding-left: 0;
  margin-top: 0;
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
}

#socialMedia i {
  display: flex;
  width: 100%;
  background-color: unset;
  color: unset;
  padding: 0;
  margin-right: 15px;
}

#copyright {
  border-top: solid grey 1px;
  text-align: center;
  width: calc(100% - 60px);
  margin-left: 30px;
}

.hidenCodingItem, .hidenGraphicItem {
  display: none;
}

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