body{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1em;
    background-color: #555555;
    color: whitesmoke;
    margin-left: 2px;
    margin-top: 5px;
    margin-bottom: 2px;
    margin-right: 2px;
    height: 100%;
    width: 100%;
}

.maindiv{
    padding: 2px;
}

table {
    border-style: solid 2px orange;
    border-radius: 10px;
}

tr td{
    border: 0px;
}

th {
    font-weight: bold;
    border:0px;
    text-align: left;
}

input{
    background-color: orange;
    border-color: whitesmoke;
    border-radius: 5px;
}

.div0 {
    position: absolute;
    top:inherit;
    left:10px;
    width:auto;
    visibility: hidden;
}

.div1{
    position: absolute;
    top: inherit;
    left: 10px;
    width: auto;
    visibility: visible;
}

button{
    border-radius: 3px;
    background:none;
    outline: none;
    color:whitesmoke;
    border:1px;
}

button:focus{
    border-radius: 3px;
    background:none;
    outline: none;
    color:whitesmoke;
}

button:hover{
    border-radius: 3px;
    background:none;
    outline: none;
    color: orange;
}

span{
    font-weight: bold;
}

.errordiv{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    padding: 20px;
    background: #555555;
    border-radius: 15px;
    color:orange;
    text-align: center;
    vertical-align:middle;
    box-shadow: 10px 10px 15px orange;
    z-index: 5;
    visibility: hidden;
    font-size: large;
}