* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Capraia";
  src: url("Capraia-Bold.woff2") format("woff2"), url("Capraia-Bold.woff") format("woff");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Capraia";
  src: url("Capraia-BoldItalic.woff2") format("woff2"), url("Capraia-BoldItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
body {
  background: url("../assets/img/bg.webp") #000;
  background-attachment: fixed;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  color: #fff;
  font-family: "Capraia";
  font-size: 15px;
  line-height: 24px;
  text-align: center;
}

.landing-page {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.landing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

.logo {
  position: relative;
  z-index: 2;
  display: block;
  width: 300px;
  max-width: 80%;
  margin: 0 auto;
  padding-top: 5rem;
  text-align: center;
}
.logo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.coming {
  position: relative;
  z-index: 2;
  display: block;
  margin: 1rem auto 0 auto;
  max-width: 200px;
  width: 80%;
}

.stpierre {
  position: relative;
  z-index: 2;
  display: block;
  margin: 4rem auto 4rem auto;
  max-width: 200px;
  width: 80%;
}

.instagram {
  display: block;
  margin: 0 auto;
  width: 40px;
}
.instagram img {
  display: block;
  height: auto;
  transform: scale(0.95);
  transition: transform 0.3s;
  width: 40px;
}
.instagram:hover img {
  transform: scale(1);
}

p {
  margin-bottom: 50px;
}
p strong {
  text-transform: uppercase;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

a.button {
  color: #000;
  display: block;
  height: 30px;
  margin: 30px auto;
  position: relative;
  width: 140px;
}
a.button strong {
  font-size: 11px;
  line-height: 29px;
  position: relative;
  text-transform: uppercase;
  z-index: 10;
}
a.button:after {
  background: #fff;
  border-radius: 4px;
  content: " ";
  display: block;
  height: 100%;
  filter: url(#chalk);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  transform-style: preserve-3d;
  transform: perspective(10cm) skewX(-8deg) rotate(-1deg);
  width: 100%;
}
a.button:last-of-type strong {
  line-height: 29px;
}
a.button:last-of-type:after {
  transform-style: preserve-3d;
  transform: perspective(20cm) skewX(2deg) rotate(0deg);
}

footer {
  margin: 50px auto;
}
footer a {
  display: inline-block;
  margin: 0px auto 15px;
}
footer em {
  font-size: 13px;
}
footer span {
  display: block;
  height: 0;
  overflow: hidden;
}

@media only screen and (min-width: 500px) {
  a.button {
    display: inline-block;
    margin: 0;
  }

  .instagram {
    display: inline-block;
    margin: 0 50px 0;
    position: relative;
    top: 15px;
  }

  footer a {
    display: block;
    margin: 0;
  }
  footer em {
    display: block;
  }
  footer em a {
    display: inline-block;
  }
  footer em span {
    display: inline;
    height: 100%;
    overflow: visible;
  }
  footer br {
    display: none;
  }
}
@media only screen and (min-width: 650px) {
  .landing-page .logo {
    width: 600px;
    padding-top: 8rem;
  }

  .instagram {
    margin: 0 80px 0;
  }
}
@media only screen and (min-width: 1250px) {
  body {
    background: url("../assets/img/bg.webp") #000;
    background-attachment: fixed;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 1250px auto;
  }
}
