<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
body {
background-color: #ffffff;
}
.content {
width: 100%;
}
.content div {
display: inline-block;
width: 150px;
height: 600px;
}
.content div:first-child {
background-color: pink;
}
.content div:last-child {
background-color: purple;
}
.content .center {
width: calc(100% - 300px);
background-color: lightblue;
overflow: hidden;
text-align: center;
margin: 0 -5px;
}
img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>