
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  background-color: #fff;
  
}

.image1 {
  width: 40% ;
  height: auto;
  float: right;
  padding: 10px 10px 10px;
}

.image2 {
  width: 40% ;
  height: auto;
  float: left;
  padding: 10px 10px 10px;
}

/* Style the header */
.header {
  background-color: #cc66dd;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  
}

/* Style the top navigation bar */
.topnav {
  overflow:hidden ;
  background-color: FF3355;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #000;
  text-align: center;
  padding: 10px 15px;
  margin-left: 10px;
  font-size: 20px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #FF5733;
  color: black;
}

.section {
  background-color: #fff;
  padding:  22px;
  text-align: center;
   font-size: 18px;
  color: #000;
  background-color: #5ed9e0;
}



/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

/* right column */
.column.right {
  width: 25%;
  background-color: #2d8925;
   font-size: 18px;
  
}

/* Left column */
.column.left {
  width: 25%;
  background-color: #4286f4;
   font-size: 18px;
  
}

/* Middle column */
.column.middle {
  width: 50%;
  justify: center;
   font-size: 18px;
   background-color: #FFA133;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
	
  }
}

/* Style the footer */
.footer {
  background-color: #9e126b;
  padding: 10px;
  text-align: center;
  color: #000;
   font-size: 18px;
}
