html, body {
    background-color: black;
    width: 100%;
    height: 100%;
    margin: 0;
}

div.main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

div.error {
    height: 20%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.input {
    height: 80%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.update {
    height: 20%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.info {
    height: 80%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

span.error {
    display: inline-block;
    font-size: 30pt;
    font-family: 'Courier New', Courier, monospace;
    color: rgb(200, 100, 100);
}

form {
    width: 50%;
}

input {
    width: 100%;
    display: inline-block;
    color: lightgray;
    background-color: #202020;
    outline: none;
    border: none;
    font-size: 20pt;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px;
    border-radius: 5px;
}

table {
    color: lightgray;
    background-color: #202020;
    font-size: 15pt;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px;
    border-radius: 5px;
}

td {
    background-color: #303030;
    padding: 5px;
    border-radius: 5px;
}

td.name {
    text-align: right;
}
