/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*====================================Meyer CSS reset Ends here====================================*/

/*-----------------------------------------*/
/*        MSD CSS starts Here          */
/*-----------------------------------------*/
* {
		box-sizing:  border-box;
	}

body {
  	background-color: rgb(237 240 242);
  	font-family: 'Delius', cursive;	
  	color: #fff;

 }

.container {
		margin: 0 auto;
		max-width: 1200px;
		width: 100%;
		background: linear-gradient(90deg, rgba(108,37,92,1) 0%, rgba(41,14,38,1) 35%, rgba(39,27,56,1) 100%);		
}

header, main, footer {
	width: 980px;
	margin: 0 auto;
}

header {		
	text-align: center;
	margin-bottom: 50px;
	}

h1 {
	font-size: 4em;
	text-transform: uppercase;
	padding: 20px;
}

h2 {
	font-size: 2em;
}

section h2 {
	margin-top: 30px;
}

main {
	padding: 0 200px;
	margin: 0 auto;
}

section {
	margin: 10px 0;
	background: linear-gradient(90deg, rgba(140,112,139,1) 0%, rgba(97,88,95,1) 35%);
	padding: 20px;
}

ul {
	padding: 0 20px;
}

ul a {
	text-decoration: none;
	display: inline-block;
	padding: 20px 10px 5px;
}
ul a:link {
	color: #fff;
}
ul a:visited {
	color: #fff;
}
ul a:hover {
	color: #37df2b;
	border-bottom-color: 1px dotted #987279;
}
ul a:active {
	color: #37df2b;
}
ul a:focus {
	border-bottom-color: 1px dotted #ffc0cb;
}

ul li {
	list-style-type: square;
}

footer{
	text-align:  center;
	background: rgba(108,37,92,1);
	color: #fff;	
	line-height: 2;	
}

footer a {
	text-decoration: none;
	color: #ffe6f7;
}


@media screen and (max-width: 600px) {
 .container {
 	max-width: 600px; 
 }


header, main, footer {
	width: 600px;
	margin: 0 auto;
}

main {
	padding: 0 20px;	
} 
}

@media screen and (max-width: 375px) {
	header, main, footer {
	width: 375px;
	}

 .container {
 	width: 375px;
 	background: rgba(41,14,38,1);
 }

 h1 {
 	font-size: 3em;
 }

}