
body {
	background-color: #018281;
	background-size: cover;
	font-family: "Lucida Console", "Courier New", monospace;
	animation: fadeInAnimation ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	background-attachment: fixed;
}
h1 {
	color: white;
	background-color:#0C2CC7;
	text-align: left;
	margin-left: 3px;
	margin-bottom: 2px;
	box-shadow: 0px -2px white;
}
h2 {
	color: blue;
	font-size: 40px;
}
.myDiv {
	background-color: #dad8d3;
	margin: auto;
	width: 60%;
	text-align: center;
	box-shadow:
		2px 2px black,
		2px 2px inset white;
	position: relative;
}
.parent {
	display: flex;
	flex-direction: column;
	padding: 30px;
}
.button {
	background-color: #dad8d3;
	border: none;
	color: black;
	text-align: center;
	font-size: 14px;
	margin: 4px 2px;
	cursor: pointer;
	padding: 10px 10px;
	box-shadow:
		2px 2px black,
		2px 2px inset white;
}
a {
	text-decoration: none;
}
.solid {
	width: 75%;
}
.blink_me {
	animation: blinker 1s linear infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}
a:link {
	color: blue;
	font-size: 30px;
}
p {
	padding: 2%;
}
@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
	0% {
		-webkit-filter: blur(0px);
	}
	50% {
		-webkit-filter: blur(5px);
	}
	100% {
		-webkit-filter: blur(0px);
	}
}
