@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.first-color {
	background: #433E0E;
}
.second-color {
	background: #FCDFA6;
}
.third-color {
	background: #5FB49C;
}
.fourth-color {
	background: #000F08;
}

html {
	min-height: 100vh;
	min-width: 100vw;
}

* {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
}

.flex-container {
	display: flex;
}

.centerV {
	padding: 70px 0;
	border: 3px solid green;
}

.product-boxes {
	display: flex;
	flex-direction: column;
	border-radius: 25px;
	background: #5FB49C;
	width: 26.6666vw;
	height: 60vh;
	display: flex;
	justify-content: center;
	align-items: center
}

.product-boxes div img {
	border-radius: 25px;
	width: 15vw;
	height: 20vw;
}

header {
	text-align: right;
	padding: 30px;
	background: #433E0E;
	font-size: 30px;
}

a.logo{
	color: #5FB29C;
	cursor: pointer;
	transition: 0.5s ease;
}

a.logo:hover{
	transform: scale(1.2);
}

nav a{
	text-align: left;
	font-size: 18px;
	transition: 0.3s ease;
	color: #000F08;
}

nav a:hover, nav .active {
	color: #5FB29C;
	border-bottom: 3px solid #5FB29C;
}

body {
	background-color: #FCDFA6;
}

body h1 {
	text-align: center;
	color: #000F08;
}

body h1 span{
	color: #5FB29C;
}

body p {
	color: #000F08;
}

body h3 {
	font-size: 22px;
}