html, body, div, span, applet, object, iframe, 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, 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, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Poppins';
	scroll-behavior: smooth;
}
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;
}

.mycontainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
}
.cool-button{
	padding: 15px 25px 15px 25px;
    font-family: 'Poppins';
	font-size: large;
    border-radius: 4px;
    color: #F4EBD9;
    background-color: #F0544F;
    border: solid 2px #F0544F;
    transition: 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}
.cool-button:hover{
	background-color: #F4EBD9;
	color: #483D3F;
	cursor: pointer;
}

/* our main colors 60/30/10*/
.creambg{
    background-color: #F4EBD9;
}
.greybg{
    background-color: #483D3F;
}
.orangebg{
    background-color: #F0544F;
}

/* header css starts */
.header{
	position: sticky;
	top: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	z-index: 2;
}
.header .left{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}
.header .left img{
	height: 40px;
	margin: 0px 10px 0px 10px;
}
.header .left:hover{
	cursor: pointer;
}
.header .left h1{
	background-clip: unset;
	background: -webkit-linear-gradient(100deg, rgba(255,157,130,1) 0%, rgba(240,84,79,1) 100%);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size:20px;
	transition: ease 1s;
}

.header .right{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header .right a{
    color: #F4EBD9;
	text-decoration: none;
	font-size: 20px;
	margin: 0px 20px 0px 20px;
}
.header .right a:hover{
	color: #ffffff;
}
.header .right img{
	height: 30px;
	margin: 0px 10px 0px 10px;
}
.header .right img:hover{
	cursor: pointer;
}
@media only screen and (min-width: 800px){
	.header .left img{
		height: 60px;
	}
	.header .left h1{
		font-size:30px;
	}
	.header .right{
		flex-direction: row;
	}
	.header .right a{
		display: flex;
		color: #F4EBD9;
	}
	.header .right img{
		display: none;
	}
}
/* header css ends */

/* footer css starts */	
.footer{
	width: 100%;
	margin: 50px 0px 0px 0px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}
.footer div{
	margin:  10px 0px 10px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 380px;
	justify-content: flex-start;
}
.footer div img{
	height: 120px;
}
.footer div img:hover{
	cursor: pointer;
}
.footer div h2{
	font-size: 30px;
	margin: 25px;
	color: #F0544F;
}
.footer div p{
	margin: 5px;
	color: #F4EBD9;
}
.footer div a{
	margin: 15px;
	color: #F4EBD9;
	text-decoration: none;
}
.footer div a:hover{
	color: #F0544F;
	text-decoration: underline;
}
@media only screen and (min-width: 800px){
	.footer{
		flex-direction: row;
		align-items: baseline;
	}
	.footer div{
		margin: 30px 0px 30px 0px;
	}

}
/* footer css ends */	

.cool-text{
	background-clip: unset;
	background: -webkit-linear-gradient(100deg, rgba(255,157,130,1) 0%, rgba(240,84,79,1) 100%);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}