body{
    background-color: bisque;
}
button {
    color:crimson;
}
h1 {
    font-size: 40px;
}
.card {
    padding: 20px;
    margin: 15px;
    border: 2px solid #484e5f;
    border-radius: 10px;
    background: #F1F1F4;
}

.my-button {
    background-color: #32cd32;
    color: white;
    padding: 15px 35px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 10px;
}

.my-button:hover {
    background-color: #228b22;
}

header{
	background-color: red;
	padding: 15px;
	display: flex;
	border-bottom: 5px solid orange;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

html{
	scroll-behavior: smooth;
}

section{
	scroll-margin-top: 100px;
}

nav a{
	color: white;
	text-decoration: none;
	font-size: 18px;
	padding: 5px 10px;
	border-radius: 10px;
	transition: 0.3s;
}
nav a:hover {
	background-color:white;
	color:#ff69b4;
}

footer{
	background-color: #4682b4;
	color: white;
	text-align: center;
	padding: 10px;
}
