body {
background-color:Pink;
}
button {
background-color:HotPink;
}
h1 {
font-size: 40px;
}
.card {
	padding: 10px;
	margin: 15px;
	border: 10px solid #87CEEB;
	border-radius: 5px;
	background: #00FFFF;
}
.my-button {
	background-color: hotpink;
	color: #000000;
}
.my-button:hover {
	background-color: #FFEFD5;
	cursor: pointer;
}
.my-button:active {
	background: #d6c5a4;
}
html {
	scroll-behavior: smooth
}
section {
	scroll-margin-top: 100px
}
header {
	background-color: LightCyan;
	padding: 15px;
	display: flex;
	border-bottom: 5px solid;
	position: fixed;
	top:0;
	left:0;
	width:100%;
}
nav a {
	color: HotPink;
	text-decoration:none; 
	font-size:18px;
	padding:5px 10px;
	border-radius:10px;
	transition:0,3s;
}
nav a:hover {
	background-color: #696969;
	color:#696969;
}