.days{
    display: flex;
    margin: 0 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 700px){
    .days{
      margin: 0;
    }
  
}

.day{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30px;
    background-color: #ccc;
    height: 30px;
    margin: 2px;
}
.past{
    background-color: #adff2f;
}

.today{
    background-color: #ff0;
} 
body{
  padding: 0 25vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

html{
  margin: 0;
  padding: 0;
  max-width: 100vw;
}

@media screen and (max-width: 700px){
  body{
    padding: 0 10vw;
  }
}

h1{
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}

#banner{
  position: fixed;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}

button{
  margin: 5px;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 3px #ccc;
}
#rejectCookies{
  background-color: #adff2f;
}

#acceptCookies{
  background-color: #ccc;
}

#banner p:nth-child(1){
  margin-bottom: 0;
}

#banner .small{
  padding: 0;
  margin-top: 0;
  font-size: 0.7em;
}