body {
  font-family: 'Oooh Baby', cursive;
  background-color: rgb(209, 210, 211);
  text-align: center;
}

h1 {
  text-align: center;
  font-size: 60px;
  font-weight: lighter;
  margin: 15px;
  text-shadow: rgb(151, 151, 151) 4px 4px 6px;
}

#container1 {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

input{
  width: 300px;
  font-size: 20px;
  font-family: 'Oooh Baby', cursive;
  border: none;
  height: 29px;
  transition: background-color 0.5s;
  border-radius: 2px;
}

input:focus {
  outline: none;
  background-color: rgb(105, 110, 112);
  color: white;
}

button {
  height: 31px;
  border: none;
  width: 30px;
  margin-left: 10px;
  color: white;
  background-color: rgb(105, 110, 112);
  border-radius: 2px;
}

li {
  font-size: 25px;
  text-align: left;
  margin: 10px 0 ;
  border-bottom: 1px gray solid;
}

#container2 {
  width: 400px;
  margin: 10px auto 0;
  padding: 0%;
}

li {
  cursor: pointer;
}

@media all and (max-width:600px) {
  h1 {
    font-size: 12vw;
  }
  input {
    width: 60vw;
    font-size: 6vw;
    height: 8vw;
  }
  button {
    height: 8vw;
    width: 8vw;
    text-align: center;
    font-size: 4vw;
    margin-left: 2vw;
  }
  #container2 {
    width: 70vw;
  }
  li {
  font-size: 6vw;  
}
}
