* {
  margin: 0;
  overflow: 0;
  box-sizing: border-box;
  background-color: #3d9ada;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 350px;
  height: 280px;
  border-radius: 3px;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.3);
}

#pass-box {
    display: block;
  font-size: 1.7rem;
  padding: 7px 10px;
  background-color: #fff;
  color: #6c6a6a;
  border-radius: 3px;
  margin: 5px 10px;
  overflow: scroll;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.menu {
  margin-top: 1rem;
  padding: 0 10px;
  line-height: 30px;
}

#length-check {
  border: none;
  outline: none;
  width: 14%;
  background-color: #fff;
  padding: 5px;
  color: #3c3c3c;
}

#pass-length,
#uppercase,
#lowercase,
#numbers,
#symbols {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#generate-password-btn {
  width: 95%;
  border: none;
  outline: none;
  background-color: #525050;
  color: #fff;
  padding: 10px 0;
  cursor: pointer;
  margin: 0.8rem 2%;
  border-radius: 5px;
  font-size: 16px;
}

#generate-password-btn:hover {
  background-color: #3a3939;
}
