/*
Selector {
	property: value; declaration
}
*/

/* border-sizing and font-family on all */
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the body */
body {
  margin: 0; 
  padding: 0;
  text-align: center;
}

/* Style the header */
header {
  background-color: #3134e8;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 25px;
}

/* Style the paragraph */
p {
background-color: #3134e8;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 25px;	
}

/* Style the top navigation bar */
nav {
  overflow: hidden;
  background-color: #333;
  font-size: 25px;
}

/* Style the nav links */
nav a {
  text-align: center;
  display: inline;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  font-size: 30px;
}

/* I changed the hover effects */
/* Change color on hover */
nav a:hover {
  background-color: #fff;
  color: black;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

/* Left column */
.column.first {
  width: 25%;
  font-size: 25px;
}

/* Middle column */
 .column.middle {
  width: 35%;
  font-size: 25px;
}

/* Right column */
.column.last {
  width: 25%;
  font-size: 25px;
  margin-right: 15%;
  float: right;
}

/* 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, section .column.middle .column.last {
    width: 100%;
  }
}

/* Style the footer */
footer {
  margin-top: 18%;
  background-color: #3134e8;
  color: white;
  padding: 10px;
  text-align: center;
}