*/html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {	margin: 0;	padding: 0;	border: 0;	font-size: 100%;	font: inherit;	vertical-align: baseline;}/* HTML5 display-role reset for older browsers */article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	display: block;}body {	line-height: 1;}ol, ul {	list-style: none;}blockquote, q {	quotes: none;}blockquote:before, blockquote:after,q:before, q:after {	content: '';	content: none;}table {	border-collapse: collapse;	border-spacing: 0;}

* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}

body {
  	margin: 10px;
	background-color: #5b6574;
	
}

#score{
	position: relative;
	border: 3px solid #4c9ad0;
	border-radius: 20px;
	font-size: 40px;
	padding: 10px;
	top: 0;
	float: left;
}

.container{
	position: absolute;
	top: 20px;
  	width: 30%;
	margin: 40px auto;
	border: 3px solid #4c9ad0;
	border-radius: 20px;
	padding: 20px;
  	background-color: #fff;
	position: absolute;
    top:10;
    bottom: 10;
    left: 0;
    right: 0;
    
    margin: auto;
	
}

.logo{
	float: right;
	width: 50px;
	
}

h1 {
	text-align: center;
	padding-top: 10px;
	color: #5b6574;
  	font-size: 26px;
	
	
}

input[type="button"] {
  	
	width: 110px;
  	padding: 12px;
 	margin: 10px;
  	background-color: #fff;
  	border: 2px solid #4a89bc;
	border-radius: 10px;
  	cursor: pointer;
  	font-weight: bold;
  	color: #4a89bc;
  	transition: background-color 0.2s;
}

.answers {
  	
	width: 210px;
  	padding: 5px;
 	margin: 5px;
  	background-color: #4a89bc;
  	border: 2px solid #4a89bc;
	border-radius: 10px;
  	cursor: pointer;
  	font-weight: bold;
  	color: #fff;
  	transition: background-color 0.2s;
}



@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  img{
	
	width: 40px;
	margin: 5px;
	}
 .container img{
	
	width: 140px;
	margin: 5px;
	}
	.container{
	width: 90%;	
		}


}


@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}