@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #202020;
  --secondary-color: #a2be23;
  --smooth-color: #e6e6e6;
  --basic-color: white;
  --mouse-Y: 0px;
  --mouse-x: 0px;
}

.dark-mode {
  --primary-color: white;
  --basic-color: #202020;
}

.wip {
  background-image: url("/static/images/wip.jpg");
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  height: calc(100vh - 74px);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wip #wip-content {
  margin: 20px;
  border: white 4px solid;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-family: "Archivo Black";
}
.wip #wip-content a {
  color: white;
}

body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  background-color: var(--primary-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0px;
}

.header-contents {
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 120px;
}
.header-contents .left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}

h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: 40px;
  color: var(--basic-color);
}

h2 {
  font-family: "Archivo Black", sans-serif;
  color: var(--basic-color);
}

h4 {
  color: var(--secondary-color);
}

ul, p, h3 {
  color: var(--basic-color);
}

a {
  color: var(--secondary-color);
  text-decoration: underline;
}

#header-accueil {
  background-image: url("/static/images/background.jpg");
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
}

#header-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: linear-gradient(90deg, rgba(32, 32, 32, 0.7) 0%, rgba(0, 0, 0, 0.14) 100%);
  padding: 50px 70px;
}

#header-in-acceuil {
  color: white;
  filter: grayscale(50%);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#header-in-acceuil h1 {
  font-size: 100px;
  font-family: "Lobster", cursive;
  line-height: 105px;
  color: white;
}
#header-in-acceuil p {
  font-size: 20px;
  color: white;
}

#picture-header {
  filter: brightness(100%);
  flex: 1;
  text-align: right;
}
#picture-header img {
  width: 400px;
}

.button {
  cursor: pointer;
  background-color: var(--secondary-color);
  padding: 5px;
  border-radius: 15px;
  font-weight: bold;
  border: #a2be23 2px solid;
  transition: all 0.3s ease;
  text-align: center;
  width: fit-content;
}
.button a {
  text-decoration: none;
  color: #e6e6e6;
  transition: color 0.3s ease-in-out;
}
.button:hover {
  background-color: transparent;
}
.button:hover a {
  color: var(--basic-color) !important;
}

#whoami {
  margin-top: 20px;
  display: initial;
}

section {
  background-color: var(--primary-color);
  color: var(--basic-color);
  padding: 10px 120px;
  display: flex;
  flex-direction: column;
}

.under-line::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  border-bottom: var(--secondary-color) solid 5px;
  margin-left: 20px;
}

.content {
  padding: 50px 300px;
  box-shadow: 0px 0px 80px 10px #000;
}

.box-effect {
  padding: 10px 30px;
  background-color: var(--primary-color);
  border-radius: 15px;
  box-shadow: 0px 0px 10px #aaa;
}

.header-title {
  height: 40vh;
  width: 100vw;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.object-box {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.object-box .object-content a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--basic-color);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.object-box .object-content a:hover {
  color: var(--secondary-color);
}
.object-box .object-content a:hover i {
  transform: scale(1.1);
}
.object-box .object-content i {
  transition: transform 0.3s ease-in-out;
  font-size: 80px;
  margin: 20px;
}

.h4-subtitle {
  display: flex;
  justify-content: space-between;
}

.row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

span {
  color: var(--secondary-color);
}

.block-effect {
  box-shadow: 0px 0px 10px #aaa;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--basic-color);
  padding-top: 20px;
}
footer i {
  font-size: 30px;
  margin: 0px 5px;
}
footer p {
  margin: 5px;
}

@media screen and (max-width: 1200px) {
  .full-size-mobile {
    text-align: justify;
    flex-basis: 100% !important;
  }
  #header-content {
    padding: 40px 20px;
  }
  #header-in-acceuil h1 {
    font-size: 80px;
    line-height: 70px;
  }
  #picture-header {
    text-align: center;
  }
  #picture-header img {
    width: 20em;
  }
  .content {
    padding: 40px 10px;
  }
  .box-effect {
    padding: 10px;
  }
}

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