html, body {
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  text-align: center;
  font-family:'Courier New', Courier, monospace
}

/* le titre de Home.html*/
h2 {
  color: white;
  font-size: 1cm;
  font-weight: 200;
  margin: 0;
}

/* le container principale */
.containerHome {
  padding: 20px;
  border-radius: 40px;
  box-shadow: 0 0 4px rgb(204, 174, 174);
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* la liste des villes - combobox*/
select {
  font-size: 0.55cm;
  padding: 10px;
  border-radius: 40px;
  border: 2px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  width: 300px; 
}

select:focus {
  border-color: none;
  outline: none;
}

option {
  padding: 10px;
}

/* permet de cacher l option ville (value="" selected disabled) */
select option[disabled] {
  display: none;
}

.comboboxHome {
  display: flex;
  justify-content: center;
  margin: 20px;
}