* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 25px;
    font-family: 'Courier New', Courier, monospace;
}

h1{
    font-size: 50px;
}

button{
    padding: 20px 30px;
    border-radius: 50px;
    border: none;
    background-color: rgb(170, 25, 237);
    color: #ffffff;
    font-size: 15px;
}

button:hover{
    background-color: rgb(142, 8, 204);
}

button:active{
    background-color: rgb(124, 10, 177);
    
}

div{
    display: flex;
    gap: 35px;
    align-items: center;
}

p, span{
    font-size: 20px;
}

span {
    font-weight: 600;
    font-size: 30px;
}

.lenght{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.passlen{
    text-align: start;
    width: 100%;
}