body {
    background: #1F2937;
    color: white;
}

#password-generator {
    width: 400px;
    height: 300px;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0px 0px 10px black;
    padding: 10px 40px 40px 40px;

    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;

    zoom: 1.2;
    transform: scale(1.2);
    -moz-transform: scale(1.2);
}

#heading {
    width: 320px;
    font-weight: 900;
}

#heading-anchor {
    color: #4ADF86;
}

p {
    margin-top: -10px;
    font-weight: lighter;
    font-size: 20px;
}

#generate-password {
    background: #10B981;
    border: none;
    border-radius: 4px;
    padding: 9px 15px;
    color: white;
    font-size: 14px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

#generate-password:hover {
    cursor: pointer;
}

#border {
    height: 40px;
    border-bottom: 2px solid #2F3E53
}

#password-container {
    display: flex;
    
}

.password {
    margin-top: 40px;
    width: 164px;
    height: 20px;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    letter-spacing: 1px;
    padding: 8px 12px 6px 12px;
    background: #273549;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space:nowrap
}

.password-content {
    color: #55F991;
}

.password:active {
    background: #364863;
}

#generate-password:active {
    transform: scale(0.99);
}

#password-two {
    margin-left: 30px;
}