h1, form, ul, li, p{
  margin: 0;
  padding: 0;
}

#wrapper{
  width: 100vw;
  height: 100vh;
  background-color: #E1E1E1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boxMeteo{
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0,0,0, 0.4)
}

.listDay{
  margin-top: 30px;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.listDay li{
  list-style-type: none;
  display: block;
  margin-right: 10px;
  padding: 5px;
  border: 4px solid #E1E1E1;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  transition: 0.2s;
}

.listDay li:last-child{
  margin-right: 0px;
}

.listDay li:hover{
   cursor: pointer;
   border: 4px solid #FF8000;
 }

.listDay li.active{
  border: 4px solid lightgreen;
}

.listDay li h1{
  font-size: 0.7em;
}

.detailDay{
  margin-top: 30px;
  background-color: #E1E1E1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0,0,0, 0.4)
}

.detailDay h1{
  font-style: italic;
  font-size: 1.3em;
  margin-bottom: 20px
}

.detailDay p{
  margin-bottom: 10px
}

select{
  width: 100%;
  background-color: #F8F8F8;
  border: 1px solid #666666;
  padding: 10px;
}