html {
    background-color: #25972d;
    background-image: -webkit-linear-gradient(270deg,rgb(37,151,45) 0%,rgb(37,151,45) 100%);
    background-image: linear-gradient(270deg,rgb(37,151,45) 0%,rgb(37,151,45) 100%);
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0 auto;
    padding: 2em 2em 4em;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    color: #f7de04;
	width: 100%;
    height: 100%;
	max-width: 1800px;
    background-color: #25972d;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
}

h1, h2, h3, h4, h5, h6 {
    color: 	#f7de04;
    font-weight: 600;
    line-height: 1.3em;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #ffffff;
}

b, strong {
    font-weight: 600;
}

fieldset {
	max-width: 1000px;
}

legend {
	color: #f7de04;
	font-weight: bold;
}

input[type=number]{
    width: 40px;
} 

samp {
    display: none;
}

img {
    -webkit-animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;

}

@-webkit-keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
    }
}

@keyframes colorize {
    0% {
        filter: grayscale(100%);
    }
    100% {
        filter: grayscale(0%);
    }
}
