body{
    background-color:  #fff;
    font-family: 'Courier New', Courier, monospace;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

header {
    text-align: center;
    padding: 10px 0;
    width: 50%;
}

h1 {
    color: #737373;
    font-size: 30px;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50%;
}

.password-div {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #1aff66;
    border-radius: 5px;
    margin-bottom: 15px;
}

p {
    padding: 20px;
    height: 25px;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #00b359;
    font-weight: 500;
}

button {
    background-color: #00ffaa;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    color: #737373;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
    outline: none;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 10px;
}

button:hover {
    background-color: #66ffcc;
    transition: 0.3s;
}
