*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
}

body{
	background: linear-gradient(90deg,#ffec6c,lightgreen);
}

.navbar{
	background: white;
	display: flex;
	position: sticky;
	position: -webkit-sticky;
	top:0;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	z-index: 9;
}

.navbar-dark{
	text-align: center;
}

.navbar-links{
	margin-bottom: 10px;
}

.navbar li{
	list-style: none;
	float: left;
	padding: 2vw;
	font-family: 'Open Sans';
}

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

.navbar li a:hover{
	color: orangered;
}

.navbar li a:active{
	color: darkorange;
}

.g20-intro{
	font-family: 'Rubik';
	padding: 20px 20px;
	text-align: justify;
	
}

.g20-intro h2{
	margin-bottom: 20px;
}

.intro-img{
	width: 100%;
	margin: 20px 0;
}

.footers{
	display: flex;
	align-items: center;
	flex-direction: column;
	border-top: 5px solid gray;
	width: 100%;
	background: lightgrey;
	font-family: 'Open Sans';
	margin-top: 40px;
	
}	

.footers ul li{
	list-style: none;
	float: left;
}

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

.alone{
	list-style: none;
	float: right;
}


h6 i{
	display: inline;
	padding: 0 10px;
	cursor: pointer;
}

h6 i:hover{
	color: darkblue;
}

.logos{
	display: inline-flex;
	padding: 10px;
}

.logos h6 a{
	color: black;
}

.faq{
	font-family: 'Rubik';
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-top: 40px;
}

.faq h1 ,.faq button{
	margin-bottom: 20px;
}

button{
	background: blueviolet;
	color: white;
	padding: 10px;
	border-radius: 20px;
	cursor: pointer;
}

#ans1 , #ans2 , #ans3,#ans4,#ans5{
	display: none;
	margin-bottom: 20px;
}

.resource-link{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

.resource-link a{
	padding: 10px;
	color: black;
	text-decoration: none;
}

.resource-link a:hover{
	text-decoration: underline;
}

.resource-link a:active{
	color: red;
}

.newsletter h2{
	margin-bottom: 20px;
}

input[type="text"],input[type="email"]{
	padding: 8px;
	margin-bottom: 10px;
	width: 80%;
}

input[type="submit"]{
	padding: 10px;
	background-color: green;
	border-radius: 10px;
	cursor: pointer;
}

input[type="submit"]:active{
	background-color: darkgreen;
}

label{
	font-size: 12px;
}

input[type="checkbox"]{
	margin-bottom: 20px;
}


@media screen and (min-width: 768px ){
	.navbar-dark{
		display: flex;
		align-items: center;
	}

	.g20-intro{
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.g20-intro h2{
		text-align: center;
	}

	.g20-intro p{
		padding: 0 20vw;
		text-align: center;
	}

	.intro-img{
		width: 70%;
	}

	.faq p{
		width: 350px;
	}

}


