

body {
    font-family: "Playfair Display", serif;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: "Playfair Display", serif;
    border: 2px solid #B2AC88; 
    padding: 20px; 
    margin-bottom: 20px;
}

header{
background-color: #93a984;
	width:100%;
	position:relative;
	height:75px;
	margin-bottom:100px;
	display:flex;
	align-items:center;
	font-size: 20px;
	font-family: "Playfair Display", serif;
	text-align:center;
}
.logo{
	display:flex;
	height: auto;
	margin-right: 10px;
	margin:20px;
	margin-bottom:auto;
	border: 2px solid #B2AC88; 
    padding: 20px; 

}

.flex-container{
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: space-between;
   
}
.flex-container-visit{
    display: flex;
    flex-direction:column;
    
    justify-content: space-between;
   
}
.flex-container-p{
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: space-between;
   
}
header h1 {
    color: black;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}
nav {
`	display:flex;
	justify-content:space-between;
	margin-left:auto;
	
}
nav a:hover{
	background-color: black;
}
main {
    padding: 20px;
}
/*https://blog.logrocket.com/css-breakpoints-responsive-design/*/
@media only screen and (min-width: 40em) {
	body{
		font-size:16px;
	}
}
/*https://blog.logrocket.com/css-breakpoints-responsive-design/*/
/* Largest devices such as desktops (1280px and up) */
@media only screen and (min-width: 80em) {
		.container{
			display:grid;	
		}
		.column {
    		width: 100%;
  		}
}

section {
    display:flex;
	
	flex-direction: row;
	justify-content:space-between;
	margin:20px;
}

.special-offer{
    border: 4px solid #B2AC88; 
    padding: 20px; 
    margin-bottom: 20px;
}
#special-offer button {
    background-color: #93a984;
    color: black;
    padding: 20px;
    border: 2px solid #B2AC88;

}
#offer{
	display:none;
}

.clip{
	background-color:green;
	width:90%;
	display:flex;
	flex-wrap:wrap;
	
	justify-content:space-between;
	margin:auto;

}
.product {
    display: inline-block;
    width: 30%;
    margin-right: 5%;
    border: 2px solid #B2AC88; 
    padding: 20px; 
    margin-bottom: 20px;
    flex-direction: row;
    
}

.product img {
    max-width: 100%;
    height: auto;
    
}
.playfair-display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400; 
    font-style: normal;
}


footer {
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
}
