/* CSS on both pages*/
body {
		margin: 0;
		font-family: Tahoma, sans-serif;
}
		
/*container*/

.container {
		width: 992px;
		margin: 0 auto;
		text-align: center;
}

/*navigation*/

.navigation {
		background-color: lightcyan;
		padding: 15px;

}

.navigation a {
		margin: 0 15px;
		text-decoration: none;
		color: blue;
}

/*buttons both pages*/

.button {
		display: inline-block;
		padding: 10px 20px;
		text-decoration: none;
		margin: 5px;
		font-weight: bold;
}

.button.left {
		background-color: navy;
		color: white;

}

.button.right,
.button.middle {
		background-color: mistyrose;
		color: black;
}

/*footer*/

.footer {
		background-color: lightcyan;
		padding: 15px;
}


/*hero*/

.hero {
		position: relative;
}

.hero-img {
		width: 100%;
		height: 400px;
		margin: 0 auto;
		display: block;
		object-fit: cover;

}

.hero-text {
		position: absolute;
		top: 150px;
		left: 0;
		right: 0;
		color: white;
		text-align: center;
}

.hero-buttons {
		margin-top: 15px;
}

/*Grid photos*/

.grid-photos {
		margin: 80px 0;
		text-align: center;
}

.grid-photos h2 {
		margin : 50px;
}

.grid-photos > div {
		display: inline-block;
		width: 26%;
		margin: 0 3%;
}

.grid-photos img {
		width: 100%;
		height: 260px;
		object-fit: cover;
}

.grid-photos p {
		margin-top: 10px
}

/*bottom section*/

.bottom {
		background-color: mintcream;
		height: 400px;
		padding: 80px 60px;
		text-align: left;
}

.bottom-image {
		display: inline-block;
		vertical-align: top;
}

.bottom-image img {
		width: 420px;
		height: auto;
}

.bottom-text {
		display: inline-block;
		vertical-align: top;
		width: 350px;
		margin-left:60px;
}

.bottom-text h2{
		margin-top: 0;

}
.bottom-text p{
		margin: 15px 0 20px 0;
}

/*page 2*/

.heading {
		margin: 80px 0;
		padding: 0 100px;
		text-align: left;
}

.left-image,
.heading-text {
		display: inline-block;
		vertical-align: top;
}

.left-image img {
		width: 300px;
		height: auto;
		display: block;
}

.heading-text {
		display: inline-block;
		vertical-align: top;
		width: 350px;
		margin-left: 60px;
}

.heading-text h2 {
		margin-bottom: 10px;
		margin-top: 0;
		font-size: 42px
}

.button-group {
		margin-top: 20px;
}

/*middle section*/

.middle-section {
		background-color: mintcream;
		width: 992px;
		margin: 80px auto;
		padding: 80px 0;
		text-align: left;
}

.white-flower {
		width: 200px;
		height: 200px;
		display: inline-block;
		vertical-align: middle;
		text-align: center;
		margin-left: 60px;

}

.white-flower img {
		width: 140px;
		height: 140px;
		border-radius: 50%;
		vertical-align: middle;
}

.heading-2 {
		display: inline-block;
		vertical-align: middle;
		width: 400px;
		margin-left: 60px;
		text-align: left;
		
}

.heading-2 h2 {
		margin-top: 0;
}

.heading-2 p {
		margin: 15px 0 20px 0;
}

/*Gallery*/

.gallery {
		width: 992px;
		margin: 90px auto;
		text-align: center;
	
}

.gallerty h2 {
		margin-bottom: 50px;
	
}

.gallery-row1,
.gallery-row2,
.gallery-row3 {
			Width: 900px;
			margin: 0 auto 35px auto;
			margin-bottom: 35px;
			text-align: center;
}

.gallery img {
		display: inline-block;
		object-fit: cover;
		margin: 0 15px;
}


.gallery-row1 img {
		width: 250px;
		height: 170px;

}

.gallery-row2 img {
		width: 394px;
		height: 220px;

}

.gallery-row3 img {
		width: 180px;
		height: 260px;
		object-fit: cover;
}

.gallery-buttons {
		margin-top: 40px;
}

























