* {
  box-sizing: border-box;
}

header, contents, footer {   
  display: block;   
}

/* Set height of body and the document to 100% for tab content*/
body, html{
  height: 100%;
  background-image: url(images/BGClouds.jpg);
  margin: auto;
  font-family: Arial;
  max-width: 1500px;
}

table.main{
  position: relative;
  background-image: url(images/bkgrnd.jpg);
  width: 99%
  padding-right: 10px;
  margin-top: 10px;
  margin-right: 6px;
  margin-left: 5px;
}

.header{
  background-color: lightblue;
  width: 80%;
  text-align: center;
  margin: 20px auto;
  border-radius: 20px;
  -moz-border-radius: 10px;
}

img#headerIMG{
  width: 300px;
  position: relative;
  float: left;
  margin: 0px;

}

div#content {
  padding: 0px 0px 0px 0px;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2vw;
  color: black;
}

p{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.0vw;
  padding: 1px 20px;
  color: black;
}

@media only screen and (min-width: 1500px) {
  p{
    font-size: 25px;
  }
}

p#text {
  text-align: center;
}

h1{
  font-family: Rancho, Comfortaa, Cambria, Cochin, Georgia, Times, "Times New Roman";
  font-size: 25px;
  text-align: center;
  color: black;
}

h2{
  font-family: "Nixie One", Cambria, Cochin, Georgia, Times, "Times New Roman";
  font-size: 4vw;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 20px;
  color: navy;
}

@media only screen and (min-width: 1000px) {
  h2{
    font-size: 25px;
    color: navy;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

h3{
  padding: 20px 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4vw;
  font-weight: bold;
  color: black;
}

.header h3{
  font-size: 3vw;
}
@media only screen and (min-width: 1000px) {
  h3{
    font-size: 30px;
    margin-left: 30px;
    margin-right: 40px;
  }
}

h5{
 font-family: Arial, Helvetica, sans-serif;
 font-size: 3vw;
 font-weight: normal;
 color: blue;
 text-align: center;
 margin-top: 30px;
}

h6{
 font-family: Kurale, Arial, Helvetica, sans-serif;
 font-size: 3vw;
 color: #24486C;
 margin: 20px;
 padding-top: 5px;
 padding-right: 10px;
 text-align: center;
 text-shadow: 2px 4px 4px #aaa;
}


@media only screen and (min-width: 1000px) {
  h6{
    font-size: 30px;
  }
}

ol{
  margin-left: 90px;
}

li{
 font-family: Kurale, Arial, Helvetica, sans-serif;
 font-size: 2.5vw;
 color: black;
 margin: 2px 0px 0px 50px;
 padding-top: 0px;
 padding-right: 0px;
 text-align: left;
 text-shadow: 2px 4px 4px #aaa;
}

@media only screen and (max-width: 1200px) {
  li{
    font-size: 25px;
  }
}

span{
  font-style: italic;
  color: navy;
}

.error_message {
  font-style: italic;
}


@media only screen and (max-width: 1000px) {
  .btnMenuM{
    width: 150px;
  }  
}

@media only screen and (max-width: 1000px) {
  .btnMenu{
    width: 250px;
  }  
}


input.error {
  border: 1px dotted red;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

img#left{
  position: relative;
  width: 15%;
  float: left;
  margin: 10px;

}

img#right{
  position: relative;
  width: 60%;
  float: right;
  margin: 10px;
}

@media only screen and (min-width: 1000px) {
  img#right{
    width: 40%;
  }
}

/* Set a style for all buttons */
button{
  z-index: 1; /* Sit on top */
  padding: 15px 25px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}


.btnLogIn{
  position: -webkit-sticky;
  position: sticky;
}

/* style for the push */
.btnLogIn:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.sticky {
  position: fixed;
  top: 10px;
  margin-left: 20px;
}

.Submit{
  display: flex;
  justify-content:initial; 
}

.btnSubmit{
  margin: auto;
  text-align: center;
  width: 50%
}

/* style for the push */
.btnSubmit:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

button:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

@media only screen and (max-width: 500px) {
  .cancelbtn{
    margin: 2px 10px 20px 2px;
  }
}


/* styles for the push */
.cancelbtn:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
  padding: 10px;
}

img.MenuLogo{
  width: 20%;
}


@media only screen and (max-width: 500px) {
  img.avatar{
    width: 60%;
  }
}


.container {
  padding: 16px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  background-color: rgb(255,255,255); /* Fallback color */
  background-color: rgba(255,255,255,0.4); /* Black w/ opacity */
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
     display: block;
     float: none;
  }
  .cancelbtn {
     width: 100%;
  }
}

table p{
  padding: 20px 20px 0px 20px;  
}

fieldset {
  margin: 2px;
  border-color: #000;
  border-width: 1px;
  border-style: solid;
}

fieldset br {
  clear: left;
}

div#footer {
  position: relative;
  width: 99%;
  margin-left: 7px;
}
