html {
  width: 99%;
  height: 100%;
}


body {
  width: 100%;
  height: 100%;
  background: #555;
}

html, body, p, h1, h2, h3, ul, ol, span, a, form, img, input, select {
  

  font-family: "Trebuchet MS", Arial, sans-serif; 
  font-size: 18px; 
  line-height: 20x;
  color: #003366;
    
}

h1{
  font-family: "Trebuchet MS", Arial, sans-serif; 
  font-size: 2.5vw;
  font-size: large;
  line-height: 1.2vw;
  color: #ffffff;
  text-align: center;
  
    
}

li{
	margin-left: 20px;
	font-size: 16px; 
	line-height: 18x;
	color: #003366;
    text-align: left;
	
}

smalltext{
	
	font-size: 14px; 
	line-height: 15x;
	color: #666666;
}

.content {
  display: flex;
  flex: 1;
  
  width: 90%;
 
  margin: auto;
  background: grey;
  padding: 10px;
  max-width:  1800px;
}

.flex-container {
	display: flex;
	background-color: #5d6b78;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	border: 5px solid #999999;
	border-radius: 15px; 
 
}

.flex-container > div {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;

	background-color: #c49e74;
	padding: 10px;
	margin: 10px;
	gap: 10px;


	justify-content: center;
	align-items:center;

	border: 10px solid #cccccc;
	border-radius: 25px; 
	width: auto;
}

.flex-container > div > div{
	width: auto;
	padding: 10px;
	margin: 10px;
	background-color: #cccccc;
	justify-content: center;
  
}



.flex-container > div > div > a >img {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	background-color: #c49e74;
	justify-content: center;
	align-items:center;
	width: 100%;
}







input[type=text], select {
  padding: 1.0vw 1.0vw;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  width: 200px;
}


input[type=number] {
  padding: 1.0vw 1.0vw;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  width: 70px;
}



input[type=range] {
  width: 100px;
}



#mainMenu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  line-height: 40px;
  background-color: #cecece;
  padding: 10px;
  margin: 10px;
  gap: 10px;
  position: fixed;
 
  justify-content: center;
  align-items:center;
  width: 95%;
  height: 20%;
  top: 40%;
  left: 0;
  
  z-index: 2;
  cursor: pointer;
  
}

#overlay {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items:center;
  width: 95%;
  height: 95%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.3);
  z-index: 2;
  cursor: pointer;
  
}

#infoFrame {
  background-color: rgba(0,0,0,0.5);
  width: 300px;
  height: 200px;
  color: #cecece;
  text-align: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items:center;
  padding: 10px;
  margin: 10px;
  line-height: 1.5;
}

input[type=submit] {
  background-color: rgb(59, 92, 60); 
  border: none;
  color: rgb(238, 238, 238);
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
}




