@charset "UTF-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap);
* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}
.myclear {
	clear: both;
}
body {
	font-family: 'Press Start 2P', sans-serif;
	font-weight: 400;
	font-size: 100%;
	background-image: url("../images/body_bg.jpg");
	background-position: center center;
	background-size: cover;
	min-height: 100vh;
}
#container {
	max-width: 1200px;
	min-height: 100vh;
	margin: 0 auto;
	background-color: rgba(173, 216, 230, 0.7);
	box-shadow: 0px 0px 20px 10px rgba(100, 143, 157, 0.75);
}
header {
	background-image: url("../images/header_bg.jpg");
	background-size: 100% 100%;
	text-align: center;
}
header h1 {
	padding: 2%;
	color: #0040a1;
	text-shadow: 2px 2px black;
	font-size: 30px;
	line-height: 1;
}
main {
	padding-bottom: 15px;
}
#vote {
	max-width: 1180px;
	border: 1px solid black;
	border-radius: 10px;
	margin: 10px;
	padding: 2%;
	background-color: #EAF7FF;
}
#results {
	max-width: 1180px;
	border: 1px solid black;
	border-radius: 10px;
	margin: 10px;
	position: relative;
	background-color: #EAF7FF;
}
/*Opt styles***************************************/


.myopt { /*things mutual to all options*/
	width: 20%;
	height: 0px;/*this is the base height, it grows from here*/
	background-size: 100%;
	background-position: center;
	background-repeat: repeat-y;
	position: absolute;
	bottom: 10px;
	overflow: hidden;
}
#optA {
	left: 10%;
	background-image: url("../images/optA_middle.jpg");
}
#optB {
	left: 40%;
	background-image: url("../images/optB_middle.jpg");
}
#optC {
	right: 10%;
	background-image: url("../images/optC_middle.jpg");
}
#totalVoters {
	padding: 10px;
    margin-top: 20px;
    background-color: #EAF7FF;
    border: 1px solid black;
    text-align: center;
    font-size: 16px;
    color: black;
	border-radius: 10px;
	box-shadow: 0px 0px 20px 10px rgba(100, 143, 157, 0.75);
}
.myopttop {/*a class for all 3 "heads"*/
	width: 100%;
	position: absolute;
	top: 0px;/*stick to the top of parant!*/
	left: 0px;
}
.myoptbottom {
	width: 100%;
	height: 50px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	text-align: center;
	padding: 4px;
	color: #191919;
	font-size: 11px;
	background-color: #EAF7FF;
}
