@charset "utf-8";
/* CSS Document */
body {
  margin: 0px;
  padding: 0px;
}
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #333;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
}
.container-first {
  position: absolute;
  /* Format origine top: 30%;*/
  top: 20%;
  left: 5%;
}
h1 {
  font-size: 110px;
  color: #FFFFFF;
  font-family: Abril fatface, sans-serif;
}
h1 span {
  position: relative;
}
.container-btns {
  position: relative;
  top: 50px;
}
.btn-first {
  border: 2px solid #f1f1f1;
  outline: none;
  background: transparent;
  font-size: 30px;
  padding: 20px;
  /* origine width: 300px;*/
  width: 200px;
  color: #f1f1f1;
  cursor: pointer;
}
.btn-first:nth-child(1) {
  margin-right: 30px;
}
.btn-first:hover {
  transition: all 0.3s ease-in-out;
  background: #f1f1f1;
  color: #333;
}
.lignes {
  position: absolute;
  top: 6%;
  left: 5%;
}
.l1 {
  width: 350px;
  /*width: 250px;*/
  height: 3px;
  background: #f1f1f1;
  border-radius: 5px;
}
.l2 {
  width: 250px;
  /* width: 140px;*/
  height: 3px;
  background: #f1f1f1;
  border-radius: 5px;
  position: relative;
  top: 20px;
}