<style>
#heading {
text-align: center;
margin-bottom: 25px;
}
.container {
width: 900px;
height: 900px;
border: 2px solid black;
padding: 1.5em;
}
.row {
display: flex;
}
.column {
padding: 5px;
}
.h6 {
font-family: sans-serif;
text-align: center;
margin-bottom: -50px;
}
.chart {
margin: 0auto;
}
.less-bottom-margin {
margin-bottom: -20px
}
</style>
<html>
<div class="container">
<h4 id="heading">What factors should you consider around European Travel?</h4>
<h6 class="less-bottom-margin">
Ticket prices across different modes of transportation based on weeks
ahead of purchase
</h6>
<div class="row">
<div class="column">
<div class="chart">${plot1}</div>
</div>
<div class="column">
<div class="chart">${plot2}</div>
</div>
</div>
<div class="row">
<div class="column">
<h6 class="less-bottom-margin">Carbon footprint for each mode of transportation</h6>
<div class="chart">${carbonFootprintPlot}</div>
</div>
<div class="column">
<h6 class="less-bottom-margin">Average travel time for each mode of transportation</h6>
<div class="chart">${travelTimePlot}</div>
</div>
</div>
</div>
</html>