/* Scss Document */
body {
  background-color: #E1FFD4; }

.container {
  display: grid;
  grid-template-areas: 'auto auto auto auto auto auto auto auto auto auto auto auto';
  margin-bottom: 25px; }

#left {
  grid-area: 1/span 12; }

#right {
  grid-area: 1/span 12; }

img {
  margin: 10px;
  border: 2px solid black; }

#foot {
  grid-area: foot; }

#social {
  grid-area: social; }

#flexMessage {
  line-height: 8em; }

footer {
  display: grid;
  grid-template-areas: 'foot foot auto auto auto auto auto social';
  background-color: #438526; }
  footer img {
    width: 50px;
    height: 50px;
    margin-top: 40px; }
  footer p {
    font-size: 38px;
    font-weight: bold;
    margin-left: 1.5em; }

p {
  font-size: 1.5em; }

input {
  line-height: 3.0em;
  width: 50%;
  margin-right: 35px; }

#flexMessage {
  line-height: 8em; }

form {
  border: 5px solid black;
  font-size: 20px;
  font-weight: bold;
  text-align: right;
  width: 90%;
  background-color: #89CC6C;
  padding-left: 10px; }
  form h2 {
    text-align: left; }

.imageGallery img {
  width: 150px;
  height: 150px; }

h1 {
  text-align: center;
  line-height: 2em; }

header {
  display: grid;
  grid-template-columns: auto auto auto auto auto; }
  header img {
    width: 600px;
    height: 233px;
    margin: 20px 0px 25px 50px; }
  header h1 {
    font-size: 60px;
    padding-top: 100px;
    text-align: left;
    margin-left: 50px; }

.button {
  width: auto;
  background-color: black;
  border: none;
  color: white;
  margin-right: 220px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border-radius: 14px;
  letter-spacing: 3px;
  line-height: 1em;
  padding: 6px 20px; }

nav {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: space-evenly;
  background-color: #618C42;
  color: white;
  letter-spacing: 5px;
  font-size: 20px; }
  
.responsive {
	max-width: 100%;
	height: auto;
	margin: auto; }
	  
p > img {
	width:600px;
	height:350px;
}

* {
  box-sizing: border-box;
}

@media only screen and (max-width: 800px) {
	
form {
	font-size: 12px;}
	
#left {
	grid-area: 1/span 6;}

#right { 
	grid-area: 7/span 6;}
	
	nav {
		font-size: 10px;}
	
	header h1 {
		font-size: 36px;}
}

 
