body {
    color: white;
    background-color: rgb(20, 20, 20);
    font-family: Helvetica;
}

.flex-container {
    min-width: 500px;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

#passwordLabel {
    font-weight: bold;
    font-size: 1.5em;
}

#loginInput {
    font-size: 1.5em;
    color: black;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    border: 1px solid black;
}

#myButton {
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid black;
    cursor: pointer;
}

#loginStatus {
    font-size: 2em;
}

#youreGayGif {
    display: none;
}