body{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
}
#console{
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    height: 70%;
    background-color: rgb(59, 53, 53);
}
#console>.header{
    display: flex;
    flex-wrap: nowrap;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 10%;
    background-color: rgb(64, 71, 71);
}
#console>.body{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
    height: 80%;
    overflow:auto;
}
#console>input{
    width: 100%;
    height: 10%;
    background-color: rgb(62, 68, 75);
    color: white;
}
#close{
    height: 25px;
    width: 25px;
    margin: 10px;
}
#hide{
    height: 25px;
    width: 25px;
    margin: 10px;
}
p{
    width: 100%;
    color: white;
    margin: 5px;
}