body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    color: #00ff00;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid silver;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
}

.text-container {
    max-width: 70%;
    }

form {
    display: flex;
    justify-content: space-between;
    width: 50%;
    margin-top: 20px;
    color: #00FF00;
    /*border: silver 1px solid;*/
}

input {
    color: #00FF00;
    background-color: #101010;
    border: 1px solid silver;
}

input[type="text"]:read-only {
    cursor: not-allowed;
}

.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid;
    width: 50%;
    height: 50%;
}

.error-container p {
    font-size: 2em;
    text-align: center;
}

