@import url("app.css");
@import url("utils.css");
@import url("fonts.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css");
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*pour mettre en base 10 */
}

body {
  font-size: 1.6rem;
  /* on repasse en police 16 */
  margin: 0;
  text-align: center;
  background-color: #1b1d2b;
  color: #d5e0eb;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

header nav {
  font-size: 1.8em;
  background-color: #000;
  box-shadow: 0 0 15px black;
  position: relative;
  z-index: 10;
  color: #fa004f;
  overflow: hidden;
  font-weight: bold;
  font-family: "VT323";
  position: fixed;
  width: 100%;
}
header nav ul {
  display: flex;
  justify-content: space-between;
}
header nav li a {
  padding: 10px;
}
header nav li:before {
  content: "> ";
  font-weight: bold;
  color: black;
}
header nav li:before:hover {
  color: #fa004f;
}
header nav li:after {
  content: " <";
  font-weight: bold;
  color: black;
}
header nav li:after:hover {
  color: #fa004f;
}
header nav li:hover {
  transform: scaleX(125%);
  transition: all ease 0.4s 0s;
}
header nav li:hover:after, header nav li:hover:before {
  color: #fa004f;
  font-weight: bold;
}

#presentation {
  background: bottom/cover no-repeat url("../images/retro_gridsvg.svg");
  background-color: #000;
  padding: 40px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  color: #5fddfc;
  overflow-wrap: anywhere;
  position: relative;
}
#presentation .neonBox {
  padding: 30px;
  max-width: 900px;
  background-color: rgba(0, 0, 0, 0.9);
}
#presentation h1 {
  margin: 0;
  font-family: "BeonMedium";
  font-weight: bold;
  font-style: normal;
  font-size: 5em;
  text-align: center;
}
#presentation p {
  font-family: "BeonMedium";
  font-style: normal;
  font-size: 3em;
  text-align: center;
  color: #fa004f;
}
#presentation .lines {
  position: absolute;
  top: 0%;
  right: 0%;
  height: 100vh;
  width: 100vw;
  display: block;
  vertical-align: top;
}

.resume {
  text-align: center;
}
.resume h2 {
  font-size: 3em;
  color: #fa004f;
  text-shadow: 0 0 10px;
  text-transform: uppercase;
  font-family: "VT323", sans-serif;
}
.resume h2::before {
  content: "> ";
}
.resume h2::after {
  content: " <";
}
.resume h2::after {
  content: " <";
}
.resume section {
  border-top: 3px solid #5fddfc;
  border-bottom: 3px solid #5fddfc;
  box-shadow: 0 0 15px #5fddfc;
}
.resume section:nth-of-type(even) {
  background-color: #000;
}

@keyframes buzz {
  70% {
    opacity: 0.9;
  }
}
.profile {
  text-align: center;
}

img.profile {
  max-width: 75%;
  height: auto;
  margin: 25px auto;
  border-radius: 50%;
}

main {
  position: relative;
}

@media screen and (min-width: 900px) {
  .flex-big {
    display: flex;
    justify-content: center;
  }

  .fullHeight {
    min-height: 100vh;
    min-width: 330px;
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    flex: 1 1 Opx;
  }

  .resume section {
    margin: auto;
    padding: 200px 40px;
  }
  .resume section h2 {
    margin-top: 0;
  }

  .resume article {
    flex-basis: 0;
    flex-grow: 1;
    margin: 0 25px;
  }
}
footer {
  text-align: center;
  background-color: #000;
  padding: 15px;
}

.button {
  background-color: #000;
  padding: 25px;
  border: 3px solid #5fddfc;
  border-radius: 30px;
}

.social {
  font-size: 4em;
  margin-top: 20px;
}
.social a {
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .social a {
    margin-left: 30px;
  }
}
.social a i {
  transition: all ease 0.3s 0s;
}
.social a :hover {
  color: #5fddfc;
  text-shadow: 0 0 10px;
}
@media screen and (min-width: 900px) {
  .social {
    display: flex;
    justify-content: center;
  }
}

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