body {
	overflow: hidden;
    height: 100vh;
    width: 100vw;
    margin: 0;
	box-sizing: border-box;
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
}
.header-wrapper {
    position: fixed;
    height: 70px;
    display: flex;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    width: 50%;
    right: 0;
    top: 0;
    z-index: 99;

}
.header-wrapper:after {
    content: 'And the winner is....';
    color: #FFF;
    position: absolute;
    top: 60px;
    font-size: 30px;
}
.header-wrapper img {
	height: 40px;
}
.page-wrapper {
	overflow: hidden;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}
text {
	font-family:Helvetica, Arial, sans-serif;
	font-size:12px;
	pointer-events:none;
	font-weight: 600;
}
#chart {
    flex: 1;
    display: flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
}
#question {
	background: #000;
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
-webkit-box-shadow: -5px 0px 10px 0px rgba(0,0,0,0.75);
-moz-box-shadow: -5px 0px 10px 0px rgba(0,0,0,0.75);
box-shadow: -5px 0px 10px 0px rgba(0,0,0,0.75);	
}
#question h1 {
	font-size: 50px;
	font-weight: bold;
	color: #FFF;
	margin: 0;
}
.content-wrapper {
    display: flex;
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
	svg {
		max-width: 100%;
		max-height: 100%;
	}
}
		