@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;1,200;1,300&display=swap');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
	background: silver;
	font-family: 'Poppins', sans-serif;
}
nav{
	background: white;

}
nav li{
	padding: 10px 10px;
}
nav li a{
	text-decoration: none;
	color: black;
	font-weight: 500;
}
nav li a:hover{
	color: grey;
}
.btn {
	background: orange;
	color: white;
	text-decoration: none;
	outline: none;
}
.btn:hover {
	color: white;
	text-decoration: none;
}