/*all tags apart from divs*/
div{
	border: 2px solid black;
	border-radius:7px;
	float:left;
	clear:left;
}

body{
    background-repeat:repeat;
    background-color:black;
}

/*divs*/
#container{
	background-color: navy;
	width:90%;
	height:97%;
	margin-left:5%;
	margin-bottom:5%;
}

.menu{
	background-color: navy;
	border-color: rgba(255,255,255,0);
	width:96%;
	height:10%;
	margin-left:2%;
	margin-top:2%;
	font-family: verdana;
}

.menubutton{
	text-align:center;
	background-color:white;
	width:10%;
	height:70%;
	margin-left:3%;
	margin-top:2px;
	padding-top:0.5%;
	clear:none;
	font-size:1.4vw; /*24pt*/
}


.contentall{
	background-color:white;
	width:96%;
	height:80%;
	margin-left:2%;
	margin-top:5px;
	position: relative;
}

.imageholder{
	text-align:center;
	background-color:white;
	border-color: rgba(255,255,255,0);
	width:13.5%;
	height:90%;
	margin-left:4%;
	margin-top:10px;
	padding-top:20px;
	min-width:20px;
	overflow:hidden;
}

.textholder{
	text-align:center;
	background-color:white;
	border-color: rgba(255,255,255,0);
	float:right;
	width:75%;
	height:90%;
	margin-right:4%;
	font-family: verdana;
	line-height:45px;
	font-size:24pt;
}

.mediumtextholder{
	text-align:center;
	background-color:aqua;
	float:right;
	width:75%;
	height:95%;
	margin-right:4%;
	margin-top:10px;
	color:navy;
	font-family: verdana;
	line-height:35px;
	font-size:20pt;
}

.smalltextholder{
	text-align:center;
	background-color:aqua;
	float:right;
	width:75%;
	height:95%;
	margin-right:4%;
	margin-top:10px;
	color:navy;
	font-family: verdana;
	line-height:35px;
	font-size:18pt;
}

/*_______________Final Project_______________*/

.gameholder{
	text-align:center;
	background-color:black;
	float:right;
	width:91%;
	height:95%;
	margin-right:4%;
	margin-top:10px;
	color:white;
	font-family: Comic Sans MS;
	font-size:28pt;
}

.progressbar{
	background-color: white;
	color:black;
	position:relative;
	width:900;	/*width of progress bar*/
	height:2em;
	border-radius:0.5em;
}

.progressbar::before{	/*this is a pseudo element. it lets me style the inside of the progress bar*/
	content:attr(data-label);
	position:absolute;
	left:0.2em;
	top:0.2em;
	bottom:0.2em;
	width:calc(var(--score, 0)*1%); /*how much progress is displayed*/
	min-width:1rem; /*minimum width*/
	max-width:calc(100% - 1.5em); /*maximum width*/
	background-color:red;
	border-radius:0.5em;
	padding-left:1em;
}

#button{
	margin-left:20px;
	padding:5px;
	float:right;
	background-color:lime;
	border-color:white;
}

#percentage{
	position:absolute;
	margin-left:55%;
	margin-top:60px;
}

#chooseDifficulty{
	position:absolute;
	margin-left:15px;
	margin-top:13%;
}

#easy{
	background-color:lime;
	border-color:white;
	margin-left:15px;
	margin-top:10px;
	padding-left:5px;
	padding-right:5px;
}

#medium{
	background-color:gold;
	border-color:white;
	margin-left:15px;
	margin-top:10px;
	padding-left:5px;
	padding-right:5px;
}

#hard{
	background-color:red;
	border-color:white;
	margin-left:15px;
	margin-top:10px;
	padding-left:5px;
	padding-right:5px;
}

#Kaung{
	background-color:darkred;
	border-color:white;
	margin-left:15px;
	margin-top:10px;
	padding-left:5px;
	padding-right:5px;
}

#Terynce{
	background-color:rgb(50, 0, 0);
	border-color:white;
	margin-left:15px;
	margin-top:10px;
	padding-left:5px;
	padding-right:5px;
}

#botmode{
	background-color:rgb(20, 0, 0);
	border-color:white;
	margin-left:15px;
	margin-top:10px;
	padding-left:5px;
	padding-right:5px;
}


#timer{
	margin-left:45%;
	color:yellow;
}

#bombDiv{
	margin-left:32%;
	display:none;
}

#explosionDiv{
	margin-left:25%;
	display:none;
}

/*makes images disappear when on mobile*/
@media (max-width:1200px) {
  .imageholder{
    display:none;
  }
}
