I have just started of with HTML so this is a new realm for me. I am trying to get a rectangular container in the middle of the pafe,Overlaying two other containers. This is the script i wrote and this how i am trying to make it look like
<style>
* {
  box-sizing: border-box;
}
/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
  height:800px;
 }
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
img { 
     width:100%; 
     height:100%; 
            } 
.footer {
clear:both;
font-family: 'McLaren', cursive;
background-color:black;
text-align:center;
height:50px;
padding-top: 10px;
box-sizing: border-box;
}
</style><!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h2>Two Equal Columns</h2>
<div class="row">
  <div class="column" style="background-color:#aaa;">
    <img src="4.jpg"alt="Snow">
  </div>
  <div class="column" style="background-color:#bbb;">
    <img src="5.jpg"alt="Snow">
    
  </div>
<div class="footer">
 © These are random text
</div>
</div>
</body>
</html> 
     
     
     
    