/* CSS Document */

*{
	margin: 0px;
	padding: 0px;
}

html {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
}

body {
	background-color: #494949;
	width: 100vw;
	min-height: 100vh;
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content:  flex-start;
	padding-top: 100px;
	align-items: center;
}

.menuBTN{
	position: fixed;
	top: 20px;
	right: 20px;
	font-size: 350%;
	z-index: 10;
}

.popup_menu {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	position: fixed;
	width: 90vw;
	height: 80vh;
	top: 5vh;
	left: 5vw;
	background-color: rgba(255, 255, 255, .95);
	z-index: 11;
}

.popup_menu a {
	text-decoration: none;
	color: black;
	font-size: 300%;
	width: calc(100% - 40px);
	padding: 20px;
	text-align: center;
	border-bottom: thin solid black;
}

.popup_menu a:active, .popup_menu a:focus, .popup_menu a:hover {
	background-color: black;
	color: white;
}

.dashboardItem {
	width: 80vw;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 10px;
	margin: 10px 0px;
	padding: 20px;
	color: black;
	font-size: 200%;
}

.siteDetails {
	margin: 20px 0px;
	font-size:150%;
}

h1 {
	font-size: 3rem;
	margin-bottom: 14px;
}
h3 {
	font-size: 3rem;
	margin: 20px 0px 30px 0px;
}

a {
	font-size: 120%;
}

form {
	width: 80vw;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	background-color: #ffffff;
	border-radius: 10px;
	margin: 10px 0px;
	padding: 20px;
	color: black;
}

.checkbox {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: calc(90% - 40px);
}

.checkbox p {
	margin-left: 20px;
	font-size: 2rem;
}

input, select {
	margin: 20px 0px;
	padding: 10px;
	font-size: 2rem;
	width: calc(90% - 40px);
}

input[type=submit], input[type=checkbox] {
	width: auto;
}


.photoGallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	padding: 20px 0px;
	justify-content: space-around;
	align-items: center;
}

.imageContainer {
	width: 40%;
	height: auto;
	border: solid thin black;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	margin: 20px 0px;
	padding: 10px 0px;
	background-color: white;
	color: black;
}

.imageContainer img {
	width: 90%;
	height: auto;
}

.imageContainerLarge {
	width: 90vw;
	height: 70vh;
	border: solid thin black;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: fixed;
	padding: 30px 0px;
	left: 5vw;
	top: 100px;
	background-color: white;
	color: black;
	z-index: 9;
}

.imageContainerLarge img {
	max-width: 60%;
	max-height: 60%;
	height: auto;
}

.uploadStatus {
	width: 90vw;
	height: 70vh;
	border: solid thin black;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	padding: 30px 0px;
	left: 5vw;
	top: 100px;
	background-color: white;
	color: black;
	z-index: 9;
}

#errorMessage{
	color: red;
	font-size: 200%;
}

.closeBTN{
	position: absolute;
	font-size: 200%;
	border: solid thin darkgray;
	border-radius: 5px;
	top: 10px;
	right: 10px;
	padding: 10px 20px;
	cursor: pointer;
}

.delete_photo_btn {
	background-color: red;
	color: white;
	padding: 10px 15px;
	border-radius: 10px;
	margin: 10px 0px;
}


.pageSelector{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 90%;
	font-size: 150%;
}

.pageSelector a, .pageSelector p {
	margin: 10px 10px;
}