@charset "utf-8";
/* comment. */

body {
	background-color: beige;
	padding: 0;
	margin: 0;
	margin-top: 6em;
	font-family: "Funnel Display", sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("images/pexels-goumbik-349610.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	
}

.container {
	width: 80%;
	background-color: antiquewhite;
	
}

nav{
	position: fixed;
	background-color: aliceblue;
	top: 0;
	width: 100vw;
	left: 0;
	z-index: 1;
}

.navi {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 3%;
	font-size: 1.5em;
	font-weight: 600;
	
}

.navi a:link, a:visited {
	color: #B87D3A;
	text-decoration: none
	
	
}
 
.navi a:hover, a:active {
	color: #402A16;
	text-underline-position: auto
	
}

.hero-section {
	display: flex;
	gap:1%;
	justify-content: flex-start;
	min-height: 400px;
	
}

.hero-left {
	width: 60%;
	background-color: beige;
	
}

.hero-right {
	width: 40%;
	background-color: burlywood;
	
	
}

img {
	width: 100%;
	height: auto;
	
	
}

h2 {
	display: flex;
	justify-content: center;
}

h3 {
	display: flex;
	justify-content: center;
}

.column {
  flex: 1;
  margin: 10px;

}


.row{
   display: flex;
   gap:2%;
   justify-content: space-evenly;
   align-items:center;
   align-content: center;
  
}

.card {
	border-radius: 0.7em;
	padding: 2%;
	box-sizing: border-box;
	box-shadow: 0 0 5px 2px darkgrey;
	transform: scale(100%);
	transition: ease-in 0.2s;
	
}

.card:hover{
	background: #E7E1D9;
	transform: scale(105%);
	transition: ease-out 0.2s;
	
}

.card img {
	width: 100%;
	height: auto;
	border-top-left-radius: 0.5em;
	border-top-right-radius: 0.5em;
	
}


