/* REGLES DE BASE POUR MOBILES */

html {
  height:100%;
  font-size: 50%;
}

.logo{
  width: 120px;
  max-width: 100%;
  margin: 1.5rem 0;
}

.flags-container{
  position: static;
  text-align:center;
  padding: 2rem;
  font-size: 2rem;
  width:100%;
}

.content{
  position: relative;
}

/* REGLES POUR TOUS < 768px */

@media(min-width:768px){

  html {
    font-size: 56%;
  }
  
  .logo{
    width: 120px;
  }

}

/* REGLES POUR TOUS < 992px */

@media(min-width:992px){

  .logo{
    width: 240px;
  }

  .flags-container{
    position: absolute;
    top: 0;
  }

  .content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .h-100{
    height: 100%;
  }

}

/* REGLES POUR TOUS < 1200px */

@media(min-width:1200px){

  html {
    font-size: 62.5%;
  }

  .logo{
    width: 485px;
  }

}
