/***********************************
****************GENERAL************
***********************************/

* {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	margin: 0;
}

body {
	margin: 0;
	font-size :1.6rem;
	font-family: 'Roboto', sans-serif;
	background-image: url('../../public/pictures/beige-wallpaper.jpg');
	background-size: cover;
}

.container {
	width : 70%;
	margin: 0 auto;
}

/***********************************
****************MAIN***************
***********************************/

.main-container {
	display : flex;
}

.main-container .main-content {
	width : 60%;
}

.main-container .left-content {
	width : 20%;
}

.main-container .right-content {
	width : 20%;
}

@media only screen and (max-width: 1500px) {

	.main-container .main-content {
		width : 80%;
	}

	.main-container .left-content {
		width : 10%;
	}

	.main-container .right-content {
		width : 10%;
	}

}	



/***********************************
****************HEADER***************
***********************************/

.main-header {
	padding-top: 2em;
	background-image: url('../../public/pictures/kids_studying.jpg');
	background-size: cover;
	background-position : 40% 50%;
}

.main-header h1 {
	text-align :center;
	margin-top: 0;
	font-family: 'Chilanka', cursive;
}

.main-header h1 a{
	color: black;
	text-decoration: none;
}

.main-header .menu ul{
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.main-header .menu ul li{
	list-style: none;
	margin-top: 1em;
	margin-bottom: 1em;
	font-family: 'Chilanka', cursive;
}

.main-header .menu ul li a{
	display: block;
	text-decoration: none;
	color: black;
	padding : 1em 2em;
}

.main-header .menu ul li a:hover{
	background-color: #3B87FB; /*  light blue */
	color : white;
}

main .card-link {
	text-decoration: none;
	color: black;
}

/***********************************
****************HOME***************
***********************************/

.cards-container h1.discover{
	font-family: 'Chilanka', cursive;
}

/***********************************
****************FORM***************
***********************************/

label {
	display: block;
	text-align: center;
}
input, textarea {
	display: block;
	margin : 0.25em auto 1em;
}

/***********************************
****************LANDING**************
***********************************/
article.card.center-card {
	margin: 1em auto 2em auto;
}

.margin-bottom-paragraph {
	margin-bottom : 1em;
}

.margin-bottom-paragraph a {
	color : black;
}

/***********************************
****************FOOTER**************
***********************************/
footer>ul {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
}

footer>ul>li{
	list-style: none;
}
footer>ul>li>a{
	display: block;
	padding: 1em;
	text-decoration: none;
	color: black;
}

footer ul li a:hover{
	background-color: #3B87FB; /*  light blue */
	color : white;

@media only screen and (max-width: 500px) {

	footer>ul {
		flex-direction: column;
	}

	footer>ul>li>a{
	text-align: center;
}

}
