html{
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 400;
}

body{
	max-width: 1060px;
	margin: auto;
	background: white;
}

header{
	height: 500px;
	max-width: 1060px;
	background-image: url("../img/yogamat.jpg");
	background-position: bottom;
	background-size: cover;
	color: white;
}

footer{
	background-color: #6E8E9B;
	text-align: center;
	color: white;
	padding-top: 0.6em;
	padding-bottom: 0.6em;
}

a, a:hover, a:visited {
    font-size: inherit;
    color: inherit;
    text-decoration: dotted underline;
}



/* Mobile only */
@media only screen and (max-width: 600px) {
	#coursImg{
		width: 90%;
		text-align: center;
		margin: auto;
	}
	.coursFlex{
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		align-items: center;
	}
	.coursFlex article{
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}
	h1{
		font-family: 'Mandali', sans-serif;
		font-size: 3rem;
		padding: 0px;
		margin: auto;
		line-height: 2.5rem;
	}
}

/* PC only */
@media screen and (min-width: 601px) {
	#coursImg{
		width: 40%;
	}

	.coursFlex{
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: center;
	}
	
	.coursFlex article{
		padding-left: 3rem;
	}
	h1{
		font-family: 'Mandali', sans-serif;
		font-size: 4rem;
		padding: 0px;
		margin: auto;
		line-height: 3.5rem;
	}
}


/* logo & nav menu apart */
.flexHeader{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}

#logo{
	height: 3rem;
	width: 3rem;
	padding: 10px 15px;
}

#headerTitle{
	text-align:center;
	position: relative;
	top: 10em;
	margin: auto;
}

#navMenu{
	padding-right: 1em;
}

/* inline list, removes marker */
#navMenu ul li{
	display: inline-block;
	margin-left: 0.4em;
	margin-right: 0.4em;
}

#navMenu ul li a{
	color: inherit;
	text-decoration: inherit;
}

h2{
	color: #6E8E9B;
	padding-top: 2rem;
}
/* vertical decoration bar after the title */
h2::after{
	content: '';
	display: block;
	height: 1.5em;
	border-left: 5px solid #6E8E9B;
	margin-top: 0.6em;
	margin-bottom: 0.6em;
}

.button, .roundImg, .radioButton {
	border: 1px solid rgba(10,10,10,0.2);
	box-shadow: 0.1rem 0.1rem 0.3rem rgba(10,10,10,0.5);
}

.button, .radioButton {
	background-color: white;
	color: black;
	font-family: 'Raleway', sans-serif;
	font-size: 1rem;
	font-weight: 1rem;	
	border-radius: 0.8rem;
	padding: 0.3rem 0.6rem;	
}

.button:hover, .radioButton:hover{
	background-color: rgb(240,240,240);
}

a.button{
	color: black;
	text-decoration: none;
}

.roundImg{
	height: 3rem;
	width: auto;
	border-radius: 3rem;
	padding: 1rem;
	margin: 1rem;
}

/* flex column, height can be adjusted */
#conceptFlex{
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}

.conceptElem{
	padding-top: 0.1rem;
	padding-bottom: 0.5rem;
	display: flex;
	flex-flow: row-reverse nowrap;
	justify-content: center;
	align-items: center;
}
/* reverse img & txt order once every 2 elements */
.conceptElem:nth-child(2n){
	flex-flow: row nowrap;
}

.conceptElem article{
	padding: 0.2rem;
}

form{
	padding-bottom: 1rem;
	padding-left: 0.2rem
}

/* container for the custom radio button */
.customBox{
	display: inline-block;
	padding-top: 0.4em;
	padding-bottom: 0.8em;
}
/* hide the original radio button, but can still be clicked */
.customBox input{
	opacity: 0;
	cursor: pointer;
}

.radioButton{
	margin-left: 0.5em;
	margin-right: 0.5em;
}
/* if the functional (hidden) radio button is checked,
   show the custom button as checked (by its color here) */
.customBox input:checked  ~ .radioButton{
	background-color: rgb(220,220,220);
}

.textInput{
	font-family: 'Raleway', sans-serif;
	font-size: 0.9rem;
	border-radius: 0.6rem;
	padding: 0.3rem 0.6rem;
	margin-top: 0.2em;
	margin-bottom: 0.2em;
}

select{
	font-family: 'Raleway', sans-serif;
	font-size: 0.9rem;
	border-radius: 0.2rem;
	width: 12em;
}