@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
/* body style*/
body {
  font-family: "Cambria", "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
  margin: 0;
}

/* nav bar */
.navbar {
  overflow: hidden;
  background-color: black;
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

.navbar a.right {
  float: right;
}

.navbar a:hover {
  color: gold;
}

/* Main Content*/

/*GRID LAYOUT*/
.item1 { grid-area: header; }
.item2 { grid-area: right;}
.item3 { grid-area: main; }

.portfolio-grid {
  display: grid;
  grid-template-areas:
    'header header header header header header'
    'main main main main right right'
	'footer footer footer footer footer footer';
column-gap: 5px;
padding: 20px 10px 20px 10px;
}

 .img{
object-fit: cover;
  width: 100%;
  max-height: 25%;
}


/*in page contact form*/

form{
	margin: 20px;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: black;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: gold;
}

/*footer*/

.footer {
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #f2f2f2;
   color: black;
   text-align: center;
}

.container{
   display: grid;
   grid-template-columns: auto auto auto auto;
   grid-gap: 10px;
}

.item {
	font-size: 15px;
	text-align: center;
	padding: 2px;
}

.copy{
	text-align: center;
	font: 15px;
	color: black;
	
}