<style>
body {
  font-size: 3.0vh;
}

h1 {
  font-size: 3.6vh;
}
h2 {
  font-size: 3.2vh;
}
checkbox {
	font-size: 1.0vh;
}

p {
  font-size: 3.0vh;
}

input, label 
{
  font-size: 3.0vh;
}

select 
{
  font-size: 3.0vh;
}

button, submit, file-selector-button {
 width: 80vw;
 height: 10vh;
 font-size: 3.0vh;
}

html *
{
   font-family: Arial, Helvetica, sans-serif;
}

.error{
	font-size: 4vw;
	color: red; 
}


/*submit {
 width: 80vw;
 height: 10vh;
 font-size: 3.0vh;
} */

/* Center the loader */
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #CCC;
  opacity: 0.5;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

.coverAll {
    z-index: 1000;
    background-color: #CCC;
	opacity: 0.7;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
	display: flex;
	text-align: center;
}

th, td {
  padding: 30px;
}


input::file-selector-button {
  /*font-weight: bold; */
  font-size: 3.0vh;
  color: dodgerblue;
  padding: 0.5em;
  border: thin solid grey;
  border-radius: 3px;
}
*/

.mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: #555;
  height: 500px;
  color: white;
  border-radius: 10px;
}

.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: #04AA6D;
  color: white;
}

</style>