@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");
body{
  font-family: 'Open Sans', sans-serif;
  background-color: #ECF2F6;
  color:#455053;
  padding:0;
  margin:0;
}
.container{
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0 20px;
  margin:0;
}
.panel{
  background-color: #fff;
  border-radius: 10px;
  padding:30px;
}
img{
  padding-bottom: 30px;
  width:360px;
  height: 89px;
}
p{
  margin:10px 0;
}


@media screen and (max-width:767px){
 img{
   width:280px;
   height: 69px;
 }
}

ul {
  list-style-position: inside; /* Garde les puces visibles */
  text-align: center; /* Centre le texte */
  display: flex; /* Active Flexbox */
  flex-direction: column; /* Garde les éléments en colonne */
}