html {
    scroll-behavior: smooth;
}

body {
	font-family: sans-serif;
	margin: 0;
	background: #eee;
	height: auto;
}
	
h1 {
	font-weight: 400;
	font-size: 2.5rem;
	margin: 0;
}
	
h2 {
	font-weight: 400;
	font-size: 1.2rem;
	margin: 0;
}

li {
    text-align: left;
}

img {
	display: block;
	width: 100%;
}

main {
	max-width: 1000px;
	margin: auto;
	box-shadow: 30px 0px 40px rgba(0,0,0,0.2), -30px 0px 40px rgba(0,0,0,0.2);
}

#logo {
    display: block;
    max-height: 100px;
    width: auto;
    margin: 1rem auto;
}

.section {
	background: #fff;
}

#landing {
	background: #fff;
}

.section-text {
	display: flex;
	flex: 0 1 50vw;
	min-height: 15vh;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-right: 1rem;
	padding-left: 1rem;
    overflow: visible;
}

.text {
	padding: 0.8rem;
	text-align: center;
}

#landing-text {
	display: flex;
	flex: 0 1 50vw;
	min-height: 35vh;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-right: 1rem;
	padding-left: 1rem;
	padding-bottom: 0.5rem;
    overflow: visible;
}

#landing-text h2 {
	color: #888;
}

#landing-image {
	background: url(images/landing.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 45vh;
	flex: 0 1 50vw;
	margin: 0;
}

#aboutme-image {
	background: url(images/lieke.jpg);
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100vh;
	flex: 0 1 50vw;
	margin: 0;
}

#work-image {
	background: url(images/massage.jpg);
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100vh;
	flex: 0 1 50vw;
    order: 1;
	margin: 0;
}

#consult-image {
	background: url(images/consult.jpg);
	background-position: left top;
	background-size: cover;
	background-repeat: no-repeat;
    height: 100vh;
	flex: 0 1 50vw;
	margin: 0;
}

#legal p {
	color: grey;
}

#legal a {
	color: grey;
}

#socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#socials i {
    font-size: 40px;
    color: black;
}

.menu {
	padding: 0.5rem 2rem;
	border: 1px #ccc solid;
	display: inline-block;
	margin: 1rem 0 0;
	border-radius: 50px;
    width: 75px;
	text-decoration: none;
	color: #333;
	background: #f4f4f4;
	transition: background 500ms ease;
}

.menu:hover {
	background: #fff;
}

.header {
	padding: 1.5rem;
	text-align: center;
	background: #333;
	color: #fff;
}

.header h2 {
	border-left: dotted 1px #fff;
	border-right: dotted 1px #fff;
	display: inline-block;
	padding-right: 1rem;
	padding-left: 1rem;
}

footer {
	text-align: center;
	padding: 2rem 1rem;
	margin: auto;
	color: #333;
}

footer h3 {
	font-size: 3rem;
	margin-bottom: 0;
}

@media (min-width: 500px){
	.menu {
		padding: 1rem 3rem;
	}

    #landing-image {
		height: 60vh;
	}

    #landing {
		display: flex;
		height: 60vh;
	}
}

@media (min-width: 900px){
	.section {
		display: flex;
		flex-wrap: nowrap;
		height: auto;
		box-sizing: border-box;
	}
	
	.section-text {
		flex: 1 1 50vw;
		overflow-y: auto;
		padding: 1rem;
		box-sizing: border-box;
		max-height: 100%;
	}
	
	#aboutme-image, #work-image, #consult-image {
		height: auto;
		min-height: 80vh;
		max-height: 100%;
		margin: 0 auto;
	}
}

@media (max-height: 1200px) and (min-width: 500px) and (max-width: 900px) {
    .menu {
	    padding: 0.5rem 2rem;
    }
}

@media (max-height: 800px) and (min-width: 900px) {
    .menu {
	    padding: 0.5rem 2rem;
    }
}

@media (max-height: 1000px) and (min-width: 500px) and (max-width: 900px) {
    .menu {
	    display: none;
    }
}

@media (max-height: 600px) and (min-width: 900px) {
    .menu {
	    display: none;
    }
}

@media (max-height: 450px) and (min-width: 500px) {
    #landing-text {
	    visibility: hidden;
    }
}
