* {
	margin: 0;
	padding: 0;
	outline: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
	text-shadow: rgba(0, 0, 0, 0) 0 0 1px;
	vertical-align: baseline;
	background-clip: border-box;
	word-break: break-word;
}

*:focus,
*:active,
*:visited,
*:hover {
	outline: 0
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box
}

::-moz-selection {
	color: #0e0e28;
	background-color: #a9a9b9;
	text-shadow: none
}

::selection {
	color: #0e0e28;
	background-color: #a9a9b9;
	text-shadow: none
}

html {
	width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	color: rgb(2, 13, 17);
	-moz-block-height: normal;
	line-height: 1.4;
	font-size: 16px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-color: #fff;
	word-break: break-word;
}

main {
    width: 800px;
    max-width: calc(100% - 20px);
    padding: 0 40px 60px;
    margin: 100px auto;
    background-color: #eee;
}

.entry-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 20px 0;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.entry-article {
    display: flex;
    align-items: flex-start;
    flex-flow: row wrap;
    margin-top: 40px;
}

.entry-article .chart-circle {
    width: 33%;
    margin-bottom: 20px;
    text-align: center;
}

@media all and (max-width: 600px) {
    main {
        padding: 20px;
    }

    .entry-article .chart-circle {
        width: 100%;
    }
}