body {
    background-color: #1f2937;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: whitesmoke;
    letter-spacing: 0.075ch;
    margin: 0;
}

.green-text {
    color: #4ADF86;
}

#main-content {
    position: fixed;
    overflow-y: auto;
    height: calc(100% - 60px);
    width: 475px;
    padding: 20px 0 0 20px;
}

#top {
    display: flex;
    flex-direction: column;
    align-items: start;
    border-bottom: #2F3E53 solid 1px;
    padding-bottom: 30px;
}

#title {
    margin: 20px 0 5px 0;
    font-size: 40px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -2.5%;
}

#tagline {
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: lighter;
    line-height: 28px;
    letter-spacing: 0%;
}

#actions {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

button {
    background-color: #10B981;
    font-size: 20px;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    color: whitesmoke;
}

#pw-length-label {
    padding: 0 5px 0 30px;
}

#pw-length {
    width: 36px;
    height: 36px;
    text-align: center;
}

#bottom {
    display: flex;
    justify-content: space-evenly;
    padding-top: 30px;
}

.pw-output-wrapper {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.pw-output-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #273549;
    width: 200px;
    padding: 8px 10px;
    border-radius: 6px;
    text-align: center;
}

.pw-output {
    font-size: 12px;
    width: 175px;
    text-align: center;
}

.img-copy {
    width: 25px;
}

.footer {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 60px;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
    background: #1f2937;
}

.link {
    color: whitesmoke;
}

.credits {
    font-style: italic;
    margin: auto;
    font-size: 11px;
}

#copied-notif {
    position:absolute;

    font-size: 10px;
    padding: 6px 9px;
    border: 2px solid #212121;
    background-color: lightgray;
    color: #212121;
    display: none;
}