html {
    background: #17b717;
    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
    -webkit-font-smoothing: antialiased;
}

body {
    background: #06acd9;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.0);
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 0 auto;
    padding: 2em 2em 4em;
}

h1, h2, h3, h4, h5, h6 {
	color: #000000;
	font-weight: 900;
	line-height: 1.3;
	-webkit-box-shadow: 0px 0px #17B717;
	box-shadow: 0px 0px #17B717;
	text-align: center;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #0083e8;
}

b, strong {
	font-weight: 700;
	text-align: center;
}

samp {
    display: none;
}

img {
	animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
	background: transparent;
	border: 0px solid #FFFFFF;
	border-radius: 0px;
	display: block;
	margin-top: 5%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: auto;
	max-width: 70%;
}

@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}
