/* Réinitialisation des styles par défaut */

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

/* Listes */

ul, ol, li {
  list-style: none;
}

/* Liens */

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

/* Images */

img {
  display: block;
  max-width: 100%;
}

/* Formulaires */

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Boutons */

button {
  cursor: pointer;
}

/* Tableaux */

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
}

/* Typographie */

body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin-top: 0;
}

p {
  margin-bottom: 10px;
}

/* Custom */

body {
  width: 100%;
  height: 100%;
  background: url('/assets/img/fond.jpg') top center #000;
  background-size: cover;
  color: #fff;

  font-family: "Anta", sans-serif;
  font-weight: 400;
  font-style: normal;
}

main {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

main > div {
  text-align: center;
}

main h1{
  font-size: 10em;
  line-height: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

main p {
  font-size: 1.8em;
  padding-bottom: 3em;
}

main #progressbar > div {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background-color: #fff;
}

main #progressbar > div > span {
  position: absolute;
  display: block;
  width: 60%;
  height: 50px;
  background-color: #728DBC;
  text-align: center;
  padding-top: 14px;
}

main #linkedin {
  padding-top: 5em;
}

main #linkedin svg {
  fill: #fff;
}

footer {
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
}