body {
	background-image: url("https://raw.githubusercontent.com/everetthumphreys/code-quiz/master/assets/wallpaper.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: top;
	background-size: cover;
	background-color: #355C7D;
	color: #ffffff;
	font-family: 'Ubuntu', sans-serif;
	padding: 10px;
}

#container {
	background-color: #355C7D;
	border: 5px solid #C06C84;
	padding: 20px;
	width: 450px;
	margin: auto;
	margin-top: 100px;
}

#startButton {
	font-size: 30px;
	font-weight: bolder;
	text-align: center;
	background-color: #355C7D;
	border: 5px solid #C06C84;
	padding: 20px;
	width: 300px;
	margin: auto;
}

#startButton:hover {
	color: #F8E995;
	border: 5px solid #F8E995;
}

#leaderboardButton {
	font-size: 30px;
	font-weight: bolder;
	text-align: center;
	background-color: #355C7D;
	border: 5px solid #C06C84;
	padding: 20px;
	width: 300px;
	margin: auto;
}

#leaderboardButton:hover {
	color: #F8E995;
	border: 5px solid #F8E995;
}

#quiz, #scoreContainer {
    display: none;
}

#questionImage {
	width: 200px;
    padding: 15px;
}

#questionImage img {
	width: 180px;
	height: 180px;
}

#quizTimer {
    font-size: 100px;
    margin-left: 40px;
}

#progress {
	padding: 5px;
    text-align: right;
}

.prog {
	width: 25px;
	height: 25px;
	border: 3px solid #F8E995;
	display: inline-block;
	border-radius: 50%;
	margin-left: 5px;
	margin-right: 5px;
}

#questionText p {
	margin: 0;
	padding: 15px;
	font-size: 20px;
}

#choices {
    width: 470px;
}

.choice {
    margin: 0px 5px 0px 5px;
    background-color: #685B7B;

}

.choice:hover {
	border: 2px solid grey;
    font-weight: bold;
}

#counter {
    margin-top: 10px;
	font-size: 25px;
}

#timetext {
    margin-top: 10px;
    font-size: 25px;
}

#btimeGauge {
	width: 150px;
	height: 10px;
	border-radius: 10px;
    background-color: #ffffff;
    margin-top: 25px;
} 

#timeGauge {
	height: 10px;
	border-radius: 10px;
	background-color: #C06C84;
	margin-top: -10px;
}

h2 {
    text-align: center;
}

.btn-primary {
    background-color: #C06C84;
}