body{
    margin: 0;
    font-family: inter;
}

#main{
    width: 450px;
    height: 550px;
    background-color: #ECFDF5;
    padding: 80px;
}

h1 {
    width: 354;
    height: 80;
    font-family: Karla;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -5%;
    color: #111827;
    margin: 0;
}
p{
    color: #6B7280;
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    margin: 10px 0 25px 0;
}
#generate-button{
    cursor: pointer;
    width: 211px;
    padding: 10px 20px;
    background-color: #10B981;
    color:white;
    border:none;
    border-radius:5px;
    font-family: Inter;
    font-weight: 600;
    margin:20px 0 25px 0;
}
#password-container{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.password-box{
    height: 19px;
    width: 211px;
    padding: 10px;
    border-radius: 6px;
    background-color: #273549;
    text-align: center;
    color: #5DEF92;
    padding: 10px;

    padding: 12px 20px;       /* Forces padding directly inside the button container */
    min-width: 180px; 
    min-height:39px;        /* Prevents the button from shrinking when text changes */
    overflow: hidden;         /* Keeps massive passwords from pushing boundaries */
    text-overflow: ellipsis;
}
