body {
    margin: 0;
    background-color: #0e1218;   
    font-family: "Karla", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#one {
    text-align: center;
    max-width: 500px;
    width: 90%;
}

#line{
    margin-top: 20px;
    height: 1px;
    width: 90%;
    background-color: #2F3E53
}

#text {
    color: white;
    font-weight: 800;
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: -30px;
}

#password {
    color: #4ADF86;
    font-weight: 800;
    font-size: 40px;
}

#paragraph {
    color: #D5D4D8;
    margin-top: -25px;
    margin-bottom: 40px;

}

#button {
    color: white;
    background-color: #10B981;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#button:hover {
    background-color: #0d966d;
}

#two {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* ensures nice wrapping on smaller screens */
}

#password1, #password2 {
    color: #55F991;
    background-color: #273549;
    padding: 10px 10px;
    border-radius: 6px;
    font-size: 18px;
    word-break: break-all;
    min-width: 150px;
    text-align: center;
}
