*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.green{
    color: green;
}

body, html{
    height:100%;
    width: 100%;
    background: rgb(14, 13, 13);
    display: flex;
    justify-content: center;
}

.container{
    background-color: rgb(45, 56, 45);
    width: 90%;
    height: 60%;
    margin-top: 20px;
    padding: 30px;
}

.heading-text{
    height: 40%;
}

.container p:nth-of-type(1){
    color: white;
}

.container p:nth-of-type(1),
.container p:nth-of-type(2) {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 50px;
  font-weight: bold;
}

.container p:nth-of-type(3){
    color: white;
    margin-top: 10px;
    font-size: 20px;
}

.input{
    height: 35px;
    border-radius: 3px;
    border: none;
    padding: 5px;
}

.generate-btn{
    height: 35px;
    border-radius: 3px;
    border: none;
    width: 120px;
    background-color: rgb(10, 193, 10);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 13px;
    color: white;
}

.horizontal-line{
    margin-top: 20px;
    color: rgb(63, 64, 63);
}

.passwords{
    height: 50%;
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin: 0 auto;
}

.box{
  border-radius: 4px;
  width: 48%;         
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background-color: rgb(67, 82, 67);
}

#pw1, #pw2, #pw3, #pw4{
    color: white;
    font-size: 15px;
}