@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Black.ttf") format("truetype");
}
.fontSize0 {
  font-size: calc(10px + 4px * 0);
}

.fontSize1 {
  font-size: calc(10px + 4px * 1);
}

.fontSize2 {
  font-size: calc(10px + 4px * 2);
}

.fontSize3 {
  font-size: calc(10px + 4px * 3);
}

.fontSize4 {
  font-size: calc(10px + 4px * 4);
}

.fontSize5 {
  font-size: calc(10px + 4px * 5);
}

.fontSize6 {
  font-size: calc(10px + 4px * 6);
}

.fontSize7 {
  font-size: calc(10px + 4px * 7);
}

.fontSize8 {
  font-size: calc(10px + 4px * 8);
}

.fontSize9 {
  font-size: calc(10px + 4px * 9);
}

.fontSize10 {
  font-size: calc(10px + 4px * 10);
}

.padding-0 {
  padding: calc(8px + 8px * 0);
}

.padding-1 {
  padding: calc(8px + 8px * 1);
}

.padding-2 {
  padding: calc(8px + 8px * 2);
}

.padding-3 {
  padding: calc(8px + 8px * 3);
}

.padding-4 {
  padding: calc(8px + 8px * 4);
}

.padding-5 {
  padding: calc(8px + 8px * 5);
}

.padding-6 {
  padding: calc(8px + 8px * 6);
}

.padding-7 {
  padding: calc(8px + 8px * 7);
}

.padding-8 {
  padding: calc(8px + 8px * 8);
}

.padding-9 {
  padding: calc(8px + 8px * 9);
}

.padding-10 {
  padding: calc(8px + 8px * 10);
}

.font-light {
  color: #fff6e0;
}

.font-primary {
  color: #ffd924;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #fff6e0;
  background-color: #000000;
}

h1 {
  text-align: center;
}

h2 {
  text-decoration: underline 2px #ffd924;
  margin-bottom: 16px;
}

h3 {
  color: #ffd924;
}

a {
  color: currentColor;
  text-decoration: none;
}

a:hover {
  color: #ffd924;
}

.btn {
  padding: 8px 16px;
  border-radius: 24px;
}

.button {
  border: 1px solid #ffd924;
  background-color: transparent;
}

.button:hover {
  color: #000000;
  background-color: #ffd924;
}

.button-reverse {
  color: #000000;
  border: 1px solid #ffd924;
  background-color: #ffd924;
  margin-left: 16px;
}

.button-reverse:hover {
  color: #fff6e0;
  background-color: #000000;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: row;
}
ul li {
  margin: 8px;
  margin-left: 24px;
}

nav {
  margin: 0;
  padding: 16px 5%;
  position: fixed;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.85);
  width: calc(90% - 32px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
nav ul a:after {
  content: "";
  display: block;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  height: 2px;
}
nav ul a:hover:after {
  background: #ffd924;
}
nav span {
  font-family: Roboto-Bold;
  color: #ffd924;
}
nav > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav img {
  width: 100%;
  border-radius: 50%;
}

nav > div:first-child > div:first-child {
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}

svg {
  margin-right: 16px;
}

section {
  padding-top: 100px;
}

#me {
  padding-top: 200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#me ul {
  padding: 0;
}
#me ul li {
  margin-left: 0;
  margin-right: 8px;
}
#me > div {
  width: 40%;
  margin: 8px;
}
#me div:nth-child(2) {
  position: relative;
  text-align: center;
}
#me .portrait {
  width: 60%;
}
#me .primaryCadre {
  left: 28%;
  z-index: -10;
  position: absolute;
  width: 45%;
  height: 20vw;
  background-color: #ffd924;
  transform: rotate(25deg);
}

#works {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#works .card {
  position: relative;
  font-family: "Roboto-Bold", sans-serif;
  margin: 16px;
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 300px;
  overflow: hidden;
}
#works .card .card-img {
  position: relative;
}
#works .card .card-img img {
  width: 400px;
  height: 300px;
  object-fit: cover;
}
#works .card .card-title {
  top: 300px;
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  color: #ffd924;
  position: absolute;
  padding: 4px;
}
#works .card:hover .card-title {
  border-top: 2px solid #ffd924;
  transition: 0.5s;
  top: 210px;
}
#works video {
  width: 400px;
  margin: 0 auto;
}

.modale {
  position: fixed;
  top: 100vh;
  opacity: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100vw;
  height: 100vh;
  transition: 1s;
}

.appear {
  top: 100px;
  transition-delay: 1s;
  opacity: 1;
  transition: 1s;
}

.block-modale {
  margin: 0 auto;
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.block-modale .close {
  justify-self: end;
  width: 50px;
  height: 50px;
  position: absolute;
  color: #fff6e0;
  background-color: transparent;
  top: 8px;
  left: calc(90% - 32px);
}
.block-modale > div:nth-child(odd) {
  overflow-y: auto;
}
.block-modale > div {
  background-color: rgba(255, 246, 224, 0.2);
  color: #fff6e0;
  overflow: hidden;
  height: 80vh;
  width: 50%;
}
.block-modale > div h3, .block-modale > div h4 {
  color: #ffd924;
}
.block-modale > div img {
  height: 100%;
}

#aboutme {
  padding-top: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#aboutme > div {
  width: 40%;
  padding: 0 24px;
}
#aboutme > div h2 {
  margin-top: 0;
}
#aboutme div:first-child {
  border-right: 1px solid #ffd924;
  text-align: right;
}

#contact {
  text-align: center;
}

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