body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: rgb(240, 240, 240);
}

#password_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(20, 20, 20);

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#password_container {
    max-width: fit-content;
    max-height: fit-content;
}

#main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main h1 {
    margin-bottom: 20px;
}