body {
  margin: 0;
  padding: 0;
  font-family: century gothic, sans-serif;
	/* 
		background-color: #f1f1f1;
  
		background-color: #333333;
	*/


		background-color: #fff;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  font-size: 24px; 
  letter-spacing:16px;
  text-align: center;
  color: #999;
  background-color: #fff;
  padding: 20px;
  /*
	border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  */
  margin-top: 50px;
}

h2 {
  font-size: 18px;
  text-align: center;
  letter-spacing:12px;
  color: #999;
  background-color: #fff;
  padding: 15px;
  /*
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  */
}


div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  border: 1px solid black;
}


img {
  width: 50%;
}



}



/* Media Query for Responsiveness */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
    padding: 15px;
  }

  h2 {
    font-size: 20px;
    padding: 10px;
  }

  Img {
  	width: 180%;
  }

}


