body{
    font-size: 20px;
    font-family: arial;
	background-image: url("img/egyptbg.jpg");
	background-color: white;
}
h1{
    font-size: 60px;
    font-family: "Zeyada", sans-serif;
	text-align: center;
}

#wrapper	{	width: 100%;
				margin: auto;
				border: 5px solid #f6e3a7;
				padding: 20px;
				background-color: white;
			}
			
button {
  background-color: #747474; 
  color: white; 
  border: 2px solid black;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

button:hover {
  background-color: black;
  color: white;
}

#container{
    margin : 20px auto;
    background-color: white;
    height: 100%;
    width : 100%;
	border : 2px solid black;
    position: relative;
}
#start{
    font-size: 1.2em;
    text-align: center;
    cursor: pointer;
    color : black;
	margin-left: auto;
	margin-right: auto;
	width: 98%;
	height: 90%;
}
#start:hover{
    font-weight: bold;
}

#question{
	font-size: 0.8em;
    width:100%;
    height : 100px;

}
#question p{
    margin : 0;
    padding : 5px;
    font-size: 1.25em;
}

#choices{
	height : 125px;
    top : 90px;
    padding : 10px
}
.choice{
    display: inline-block;
    width : 25;
    text-align: center;
    border : 1px solid grey;
    border-radius: 5px;
    cursor: pointer;
    padding : 3px;
}

#progress{
    width : 580px;
    position: absolute;
    bottom : 0px;
    right : 0px;
    padding:5px;
    text-align: right;
}
.prog{
    width : 15px;
    height : 15px;
    border: 1px solid #000;
    display: inline-block;
    margin-left : 5px;
    margin-right : 5px;
}
#scoreContainer{
    margin : 20px auto;
    height: 100%;
    width : 100%;
    border-radius: 5px;
    position: relative;
    display: none;
}
#scoreContainer p{
    display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
