
img {
    height: 100px;
    width: 200px;
}

.header{
    text-align: center;
    width:800px;
    font-family: sans-serif;
}
.container {
    position: relative;
    width: 800px;
    height: 500px;
    font-family: sans-serif;
}
.left {
    text-align: center;
    position:absolute;
    width:400px;
    left: 0px;
    height: 60%;
    /*border: solid blue 1px;*/
}
.picture {
    position:relative;
    margin-left: auto;
    margin-right: auto;
    width:50%;
    top:20%;
}
.choices {
    position:absolute;
    margin-left: auto;
    margin-right: auto;
    width:100%;
    text-align:center;
    height: 20%;
    bottom: 0px;
    /*border: solid orange 1px;*/
}
.right {
    text-align: center;

    position:absolute;
    width: 400px;
    right:0px;
    height:60%;
    /*border: solid red 1px;*/
}
.bottom {
    position:absolute;
    width: 800px;
    bottom:0px;
    height:40%;
    /*border: solid purple 1px;*/
    text-align:center;

}
