div.corpse {
    height: 100%;
    display: flex;
    flex-direction: row;
    overflow:hidden;
    background-image: url('https://th.bing.com/th/id/OIP.WhR2wxYU8H2x9QpieH9HKAHaNK?r=0&cb=iwp2&rs=1&pid=ImgDetMain');

}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Courier New', monospace;
    color: pink;
}

div.header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 100px;
    text-align: center;
    border-bottom: 5px;
    border-style: double;

}

div.sidebar {
    display: flex;
    flex-direction: column;
    padding: 10px;
    text-align: center;
    margin: 5px;
    width: 130px;
    height: 225px;
    background-color: rgb(0, 0, 0);
    border-style: double;
}

div.text {
    padding: 20px;
    margin: 5px;
    width: 100%;
    background-color: rgb(0, 0, 0);
    overflow:hidden;
    border-style: double;
}

div.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgb(0, 0, 0);
    height: 40px;
    border-style: double;
}


