@charset "UTF-8";
/* CSS Document */
html {
    background: #d8d1d1;
    background-image: linear-gradient(270deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    -webkit-font-smoothing: antialiased;
}

body {
	background: #dbdcde;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
	color: #3d251b;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 16px;
	line-height: 1.5;
	margin: 0 auto;
	max-width: 800px;
	padding: 2em 2em 4em;
}

h1{
    color: #4b505a;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;;
}

p, ul {
    color: #6f737b;
    font-family: 'Roboto', sans-serif;;
}

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

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