body {
    background-color: rgb(30, 30, 30);
    text-align: center;
}

#header-el {
    width: 50%;
    margin: 1em auto;
    padding: 10px;
    background-color: rgb(44, 44, 94);
    color: white;
    border-radius: 5px;
    border-style: inset;
    border-color: whitesmoke;
    
}

#body-el {
    width: 50%;
    height: 500px;
    text-align: left;
    margin: 0 auto;
    padding: 10px;
    background-color: whitesmoke;
    border-radius: 5px;
    border-style: inset;
    border-color: darkgray;
}

#button-container {
    width: 50%;
    height: 24px;
    text-align: left;
    margin: 0 auto;
    padding: 5px;
    border-radius: 2px;
    border-style: inset;
    border-color: darkgray;
    background-color: darkgray;
}

#button-el {
    background-color: rgb(82, 82, 82);
    color: darkgray;
    font-weight: bolder;
    margin-top: 3px;
    transition: .2s ease-in-out;
}

#button-el:hover {
    background-color: rgb(102, 102, 102);
    transition: .2s ease-in-out;
}

#status-bar {
    width: 50%;
    height: 25px;
    padding: 10px 10px 5px 15px;
    margin: 0 auto;
    border: none;
    border-radius: 5px;
    color: red;
    text-align: left;
}