/* CSS Document */

body {
	display: grid;
	grid-template-columns: 15% 70% 15%;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	
}

#content {
	display: grid;
	grid-column-start: 2;
	background-color: beige;
	border-radius: 2%;
	padding: 0px 20px 30px; /*Top left/rght bottom*/
}

#banner {
	border-radius: 1%;
	margin-bottom: 30px;
}

#logo {
	padding-bottom: 0px;
	margin-bottom: 0px;
}

#lanchor {
	font-size: 96px;
	text-decoration: none;
	color: cyan;
}

#lanchor:hover {
	color: blue;
}

h1 {
	margin: 0px;
}

h2 {
	font-size: 46px;
	margin: 10px;
	-webkit-text-stroke: 1px black;
	position: absolute;
	top: 120px;
}

#banner {
	color: white;
	grid-template-rows: auto auto auto;
	grid-template-columns: 50% 50%;
	grid-row-gap: 100px;
}

#gallery {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-column-gap: 10px;
	grid-row-gap: 20px;
}

img {
	max-width: 100%;
	height: auto;
	border-radius: 1%;
}

.gallery-section {
	display: grid;
	grid-template-columns: 50% 50%;
}

.content-text {
	padding: 0px 8px;
}