html {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    background-color: #fffafa ;
}
header {
margin: 0;
padding-top: 20px;
width: 100%;
position: fixed;
top: 0;
left: 0;
background-color: #fffafa;
height: 100px;
z-index: 5000;
box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 1px 1px;
}
.container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-bottom: 70px;
}
.logo a {
    text-decoration: none;
}
.logo p {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    color: #292c2f;
    margin: 0;
    letter-spacing: .2rem;
    
}
.lotus {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: Langar;
    color: #e59191; 
}
.lotus h1 {
    font-weight: 400;
    font-size: 40px;
    margin: 0;
}
.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    width: 60%;
}
nav {
	text-align: center;
	width: 100%;
	padding: 0;
	display: flex;
	}
nav ul{
	width: 100%;
	padding: 0.1rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

nav ul li {
	flex-basis: 20%;
	margin: 0;
	font-size: 20px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
	list-style-type: none;
	padding: 0.2rem;
    display: block;
}
nav ul a {
    text-decoration: none;
    color: #292c2f;
}

main {
	flex: 1;
    margin-top: 200px;
}
.footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    background-color: #e59191;
    height: 200px;
}
  
    
.footer a {
    text-decoration: none;
    color: #fff;
}
.footer p {
    color: #fff;
}

@media (max-width: 850px) {
    .footer {
        flex-direction: column;
    }
}
