*{
    margin: 0;
    padding: 0;
}
#password{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(192, 192, 192);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    gap: 20px;
}
#password h1{
    font-size: 40px;
    color: rgb(0, 0, 0);
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
}
#password button{
    padding: 10px 20px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    background-color: rgb(0, 0 , 0);
    color: rgb(255, 255, 255);
    cursor: pointer;
    box-shadow: 2px 2px 4px rgb(125, 125, 125);
}
#password button:hover{
    background-color: rgb(50, 50, 50);
    box-shadow: 4px 4px 8px rgb(100, 100, 100);
}
#output{
    margin-top: 20px;
    font-size: 25px;
    color: rgb(0, 0, 0);
    text-shadow: 1px 1px 2px rgb(255, 255, 255);
}
#output::selection{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

