        * {
			font-family:"Open Sans", arial, sans-serif;
            padding: 0px;
            margin: 0px;
            background-color: #0161c1;
        }

        .question {
            text-align: center;
            background-color: #0e3557;
			color:#fff;
            padding: 20px 20px;
			border-radius:3px;
			margin-bottom:15px;
			font-size:24px;
        }

        .answer, .go-back, .restart {
            width: 18.4%;
            float: left;
            text-align: center;
            background-color: #4291D1;
			border-radius:3px;
			color:#fff;
            padding: 30px 0px;
			font-size:20px;
            cursor: pointer;
            margin-right: 2%;
			transition:background-color ease-in 0.3s;
        }
		.answer:last-child {margin-right:0%;}
		
		.answer:hover {background-color:#87da4e;}

        .restart {
            background-color: #666666;
            /*color: #000;*/
        }

        .go-back {
            background-color: #666666;
            /*color: #000;*/
        } 
		.restart:hover, .go-back:hover {background-color:#0e3557;}

        .result {
            text-align: left;
			max-width:720px;
			margin:0px auto;
            font-size: 50px;
            color: #FFF;
            cursor: pointer;
        }
		.result-image {
			width:230px;
			float:left;
		}
		.result-right {
			width:450px;
			float:right;
		}
		.result .result-button {
			background-color:#87da4e;
			border-radius:3px;
			color:#fff;
            padding: 14px 0px;
			font-size:26px;
			text-align:center;
			transition:background-color ease-in 0.3s;
		}
		.result .result-button:hover {
			background-color: #0e3557;
		}
@media (max-width: 1080px) {
	.question {font-size:18px !important;padding: 12px 0px;margin-bottom:10px;}
	.answer, .go-back, .restart {font-size:14px !important; width:31%; display:inline-block; padding:14px 0px; margin-bottom:5px;}
	.result { font-size:32px !important;}
	.result-image {width:30%;}
	.result-image img {width:100%; height:auto}
	.result-right {width:65%;}
	.result .result-button {font-size:20px;}
}