/* HOME PAGE ComebackGraphic  */
/* Le 27 avril 2021 -Remy Mayeux */

* {
  box-sizing: border-box;
  /* transition: .5s; */
}

html {
  scroll-behavior: smooth;
}

body {
    width: 100%;
    font-size: 16px;
    margin: 0;
    height: 100vh;
    display: flex;
}

/* mise à 0 des espaces de paragraphe */
p {
  margin-top: 0;
}

/* container */
.fb-home {
    width: 50vw;
    margin: 20% auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Logo image */
.fb-home-logo {
    width: 80%;
    padding-bottom: 2rem;
}

/* HEADLINE texte */
.fb-login-linkedin {
  text-decoration: none; 
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: .8rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: #1e19b9;
}

/* Taille/couleur des pictos RS (SVG inligne) */ 
.fb-login-social-picto {
    width: 50px;
}

.fb-login-linkedin svg {
    fill: #1e19b9;
    margin-bottom: -3px;
}


/* -----------media query --------- */

@media (min-width: 250px) {
  .fb-home { width: 80vw; }
 }

@media (min-width: 576px) {
  .fb-home { width: 70vw; }
}

@media (min-width: 768px) {
  .fb-home { 
    width: 60vw;
    max-width: 700px;
  }
}