/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  scroll-behavior: smooth;
  background-color: #8BC6EC;
  background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
  overflow: hidden;
}

body {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  display: flex;
  width: 400%;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

h1, h3 {
  font-family: "Questrial", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1.5rem;
  }
}

section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}
@media (min-width: 768px) {
  section {
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  }
}
@media (min-width: 1024px) {
  section {
    transition: opacity 1.3s ease-in-out, visibility 1.3s ease-in-out;
  }
}

.scroll {
  overflow-y: scroll;
  height: 50vh;
  padding: 0 0.5rem;
  scrollbar-color: rgba(0, 0, 0, 0.123) rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}
@media (min-width: 768px) {
  .scroll {
    padding: 0 1rem;
  }
}
.scroll figure img {
  width: 100%;
  max-width: 500px;
  margin-bottom: 0.5rem;
}

.actif {
  pointer-events: none;
  text-decoration: none;
  opacity: 0.8;
}

#welcome p {
  max-width: 500px;
  margin: 1rem auto;
}

#about .txt {
  margin: 2rem 0;
  max-width: 600px;
}
@media (min-width: 768px) {
  #about .txt {
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  #about .txt {
    max-width: 700px;
  }
}
@media (min-width: 1200px) {
  #about .txt {
    max-width: 1000px;
  }
}
@media (min-width: 1500px) {
  #about .txt {
    max-width: 1200px;
  }
}
#about .txt p:not(:last-child) {
  margin-bottom: 2rem;
}

#contact .header {
  max-width: 400px;
}
#contact .header h1 {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  #contact .header {
    max-width: 500px;
  }
}
#contact .links {
  display: flex;
  flex-direction: column;
  margin: 4rem 0;
}
#contact .links a:not(:last-child) {
  margin-bottom: 1rem;
}
#contact nav ul {
  display: flex;
  flex-direction: column;
}
#contact nav ul li a {
  color: #000;
}
#contact nav ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  #contact nav ul li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  #contact nav ul {
    flex-direction: row;
  }
}

#projets .all {
  margin-top: 2rem;
  width: 100%;
}
#projets .all a:not(:last-child) {
  margin-bottom: 3rem;
}
#projets .all .video-link {
  margin: 0 auto;
  display: block;
  position: relative;
  max-width: 100%;
  height: 300px;
  z-index: 100;
}
#projets .all .video-link video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#projets .all .video-link .overlay {
  position: absolute;
  background-color: #000;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease-out;
}
#projets .all .video-link:hover .overlay {
  opacity: 0;
}
@media (min-width: 768px) {
  #projets .all .video-link {
    height: 400px;
  }
}
@media (min-width: 768px) {
  #projets .all {
    width: 70%;
  }
}
@media (min-width: 768px) {
  #projets .scroll {
    height: 80vh;
  }
}

.between-pages {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100vw;
  padding: 1rem 4rem;
  z-index: 1000;
}
.between-pages a {
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.3294117647);
  transition: color 0.3s ease-in-out;
}
.between-pages a:hover {
  color: #000;
}
@media (min-width: 768px) {
  .between-pages {
    bottom: auto;
    padding: 0 4rem;
  }
}

.btn {
  padding: 0.7rem 1rem;
  color: #000;
  background-color: #FFF;
  border: 2px solid #000;
  text-decoration: none;
  box-shadow: 5px 5px 1px #000;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
}
.btn:hover {
  background-color: #90f368;
  transform: translateX(5px);
}/*# sourceMappingURL=style.css.map */