* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

#app {
  background-color: cornflowerblue;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.myappcontent {
  background-color: azure;
  min-height: 80vh;
  min-width: 70vw;
  position: relative;
}

#heading h4 {
  font-size: 20px;
  display: flex;
  justify-content: center;
  padding: 3vh;
}

#password {
  display: flex;
  justify-content: center;
  min-height: 10vh;
}

#pass-length {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 5vh;
}

#pass-length input {
  height: 50px;
  width: 100%;
  padding: 10px;
}

#char{
  text-align: center;
  background-color: aquamarine;
  width:180px;
  padding: 5px;
  margin: 0 auto;
  text-align: left;
}
#char h5{
  color:blue;
}
#pass-button {
  display: flex;
  justify-content: center;
  padding: 3vh;
}

#pass-button #gen-btn {
  padding: 15px;
  background-color: blueviolet;
  color: white;
  font-size: 14px;
  border: none;
  border-radius: 5px;
}

#gen-btn:active {
  box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.5);
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: red;
}

footer p {
  padding: 15px;
  text-align: center;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: larger;
}

@media only screen and (min-width: 768px) {
  .myappcontent {
    min-width: 40vw !important;
  }
  #pass-length input {
    width: 60% !important;
  }
}