body {
    margin: 0;
    background-color: #1F2937;
    color: white;
    font-family: "Karla", sans-serif;
    text-align: left;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100vh;
    padding-left: 150px;
    max-width: 1200px;
}

.passwords {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%; 
    margin-top: 20px;
}

.heading-first {
    font-size: 60px;
    font-weight: 800;
    margin: 0;
}

.greenbutton {
    color: #4ADF86;
    text-decoration: none;
}

.heading-second {
    font-weight: 300;
    margin: 5px 10px 50px 0px;
}

#generate-button {
    background-color: #10B981;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: "Karla", sans-serif;
    color: white;
    border: none;
    font-size: 20px;
}

.solid {
    border: none;
    border-top: 1px solid #2F3E53;
    width: 100%;
    margin-top: 40px;
    margin-left: 0px;
}

.password {
    background-color: #273549;
    border-radius: 6px;
    padding: 0px 20px;
    font-size: 20px;

    color: #55F991;
    flex: 1;
    box-sizing: border-box;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pw1 {
    margin-right: 20px;
}

#pw2 {
    margin-left: 20px;
}
