/*
Theme Name: Basic Large Text 
Author: Christina Lee
Date: Dec 17, 2022
Description: A basic sans serif theme for a website containing mostly text. The text is made larger 
than default to be easier to read.
*/

html {
  margin-left: 0px;
  margin-right: 0px;
  /*border: 2px solid red;*/
  height: 100%;
}

body {
  margin-left: 0px;
  margin-right: 0px;
  /*border: 2px dashed purple;*/
  height: 100%;
}

h1 {
  text-align: center;
  font-size: 60px;
}

h2 {
  font-size: 45px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 25px;
}

p {
  font-size: 20px;
}

ul {
    font-size: 20px; 
}

label
{
  font-size: 20px;
  width: 160px;
  display: inline-block;
}

.listItem {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}

/*unvisited*/
a:link 
{
    color: green;
    text-decoration: none;
}
  
/*visited*/
a:visited 
{
    color: darkolivegreen;
    text-decoration: none;
}
  
/*mouseover*/
a:hover 
{
    color: darkorchid;
    text-decoration: none;
}
  
/*selected*/
a:active 
{
    color: greenyellow;
    text-decoration: none;
}

#page
{
    font-family: Futura,Trebuchet MS,Arial,sans-serif; 
    font-size: 16px;
    margin-left: 0%;
    margin-right: 0%;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 0px;
    padding-bottom: 0px;
    /*border: 6px solid blue;*/
}

#msg 
{
    text-align: center;
    margin: 0 auto;
}
  
#header {
    /*border: 4px solid green;*/
    flex-basis: 150px;
    flex-shrink: 0; 
}

#foot {
    /*border: 4px solid green;*/
    margin-top: auto;
    flex-basis: 50px;
    flex-shrink: 0;
    /*margin-bottom: 0px;*/
}

footer {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

#content {
    /*border: 2px dotted red;*/
    /*margin-top: 5%;*/
    margin-left: 10%;
    margin-right: 10%;
    font-size: 16px;
    flex-grow: 1;
}

#nav_list {
    text-align: center;
    background-color: black;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

#footer_content {
    background-color: black;
    padding-bottom: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: row;
}

#copyright {
    padding-left: 10px;
    flex-grow: 1;
}

#contact {
    text-align: right;
    flex-grow: 1;
}

a.nav_item {
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 25px;
}

/*unvisited*/
a.nav_item:link 
{
    color: white;
    text-decoration: none;
}
  
/*mouseover*/
a.nav_item:hover 
{
    background-color: green;
    text-decoration: none;
}
  
/*selected*/
a.nav_item:active 
{
    color: white;
    text-decoration: none;
}

#footer_content{
    font-size: 20px;
    color: white;
    background-color: black;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

a.footer_link {
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 25px;
}

/*unvisited*/
a.footer_link:link 
{
    color: white;
    text-decoration: none;
}
  
/*mouseover*/
a.footer_link:hover 
{
    color: green;
    text-decoration: none;
}
  
/*selected*/
a.footer_link:active 
{
    color: white;
    text-decoration: none;
}

input[type=text].small {
  width: 40px;
  padding: 5px 5px;
  margin: 2px 2px;
  box-sizing: border-box;
}

input[type=text].small2 {
  width: 50px;
  padding: 5px 5px;
  margin: 2px 2px;
  box-sizing: border-box;
}

select, input, button {
  font-size: 20px;
  padding: 10px 15px;
  margin: 10px 2px;
}

button {
  background-color: darkolivegreen;
  color: white;
}






