body {
    background-color: lightseagreen;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    overflow: hidden;
}

#password-generator {
    background-color: whitesmoke;
    border: 5px solid lightgray;
    width: 500px;
    height: 250px;
    border-radius: 25px;
    padding: 10px;
}

#password {
    display: grid;
    grid-template-columns: auto min-content;
    border-radius: 10px;
    overflow: hidden;
}

#result {
    padding: 10px;
    background-color: lightgray;
    font-size: 2em;
    border: none;
    outline: none;
}

#copy-button {
    background-color: lightseagreen;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

#password-length {
    width: 90%;
}

#options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

#options label {
    display: block;
    background-color: lightgray;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-family: sans-serif;
}

#generate-button {
    background-color: lightseagreen;
    color: white;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
    width: 175px;
    height: 50px;
    font-size: 1em;
    cursor: pointer;
}