/** MOBILE VIEW **/
* {
  font-family: Times New Roman, San Serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
}

html {
 /* Base styles go here */
 font: 14px/1.5 Arial, sans-serif;
 /* background: darkgreen; */
}

body {
 display: flex;
 flex-direction: column;
 /* background: lightgreen; */
 height: 100vh;
 width: 100%;
 border: 0px solid red;

}




/*
header {

}
nav {
  width: 100%;
  height: 120px;
  border: 1px solid blue; 
}
*/




hr {
  margin: 20px auto;
  border: 1px solid rgba(8, 40, 84, 1);
  width: 90%;
}

h1, h2, h3, h4, h5, p {
  text-align: center;
  padding: 0 10px;
  color: rgba(8, 40, 84, 1); 
  border: 0px solid red;
}

h2 {
  padding: 0 40px;
   font-size: 160%; 
}

p {
  padding: 0 10px;
  font-size: 120%;
}








table, th, tr, td {
  color: rgba(8, 40, 84, 1);   
}



table {
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
  border: 1px solid black; 

}

.table_title {
  font-size: 110%;
  height: 40px;
  background-color: rgba(8, 40, 84, 1);
  color: white;
}


th {
  padding: 0 3px;

}


tr, th, td {

  border: 1px solid black;
}

td {
  padding: 0 2px;
  text-align: center;
}















input, select, option, textarea {
  margin: 0 auto 10px auto;
  width: 90%;
  height: 40px;
  padding-left: 6px;
  font-size: 16px;
  border-radius: 4px 4px; 
  border: 1px solid black; 
}

label {
  padding-left: 5px;
  color: rgba(8, 40, 84, 1); 
  font-size: 16px;
  width: 90%;
  margin: 2px auto;
  border: 0px solid green;
}


textarea {
  height: 300px;
  padding: 8px 0 0 6px;
}


form {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0px solid red;
}



/*
button {
  margin: 0 auto;
  font-size: 20px;
  font-weight: bold;
  width: 75%;
  height: 53px;

}

*/



button {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto;
  color: white;
  width: 85%;
  height: 55px;
  border-radius: 5px 5px;

}

button:hover {
  /*
  color: rgba(8, 40, 84, 1);
  background-color: white;
  */
}




footer {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: none;
  border: 0px solid green;
}







@media only screen and (min-width: 375px) {




}

@media only screen and (min-width: 414px) {

table {
  font-size: 110%;
}

}

@media only screen and (min-width: 768px) {

h1, h2, h3, h4, h5, p {
  padding: 0 25px;

}

h2 {
   font-size: 150%; 
}


p {
  font-size: 125%;
  padding: 0 40px;

}

hr {
  margin: 10px auto ;
}


input, select, option, textarea {
  width: 50%;
}

label {
  width: 50%;
}



form {

}


button {
  width: 45%;
  height: 50px;
  border-radius: 6px 6px;  
}



table {
  width: 70%;
}



}


@media only screen and (min-width: 990px) {

p {
  font-size: 130%;
   padding: 0 50px; 
}


}

@media only screen and (min-width: 1024px) {


}

@media only screen and (min-width: 1240px) {

h1, h2, h3, h4, h5, p {
  padding: 0 50px;

}

h2 {
   font-size: 180%; 
}

p {
  font-size: 140%;
  padding: 0 60px;  
}

input, select, option, textarea {
  width: 35%;
}

label {
  width: 35%;
}




button {
  width: 30%;
  border-radius: 8px 8px;   
}

table {
  width: 60%;
}




}
