/* Elements */
h1 {
    font-family: monospace;
    font-weight: normal;
    line-height: 60px;
    font-size: 40px;
    color: black;
    text-align: center;
}

h2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    font-family: serif;
    font-size: 20px;
    padding-bottom: 20px;
    font-weight: bold;
    text-align: left;
    position: relative;
}
h3 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    font-family: serif;
    font-size: 18px;
    padding-bottom: 10px;
    font-weight: bold;
    text-align: left;
    position: relative;
}

p {
    /* margin: 0px; */
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    font-family: sans-serif;
    color: black;
    font-size: 18px;
    line-height: 25px;
    padding-bottom: 10px;
}

a {
    color: green;
    font-weight: bold;
}

li {
    font-family: sans-serif;
    list-style-type: circle;
    font-size: 16px;
}

img {

 display: block;
  margin-left: auto;
  margin-right: auto;

}

/* divs */


.header {
    background-color: white;
    margin: 0px;
    padding: 5px;
}

.header img {
    margin-right: 0;
    margin-top: 0;
}

.information {
    margin: auto;
    background-color: #efefef;
}


/*Custom table styling for tech and index pages*/

.techtable{
    width: 80%;
    text-align: center;
    border-spacing: 50px;
    border-top: 5px solid black;
    margin-left: 10%;
}

.techimgcell{
    text-align: left;
    margin: auto;
    width: 10%;
}

.techrow{
    padding-bottom: 2em;
}

.techimg{
    max-height: 250px;
    max-width: 450px;
    padding-bottom: 20%;
}

#firebaselogo {
    height: 40%;
    width: auto;
}

.techdesc {
    font-family: sans-serif;
    vertical-align:top;
    padding-top: 40px;
    padding-left: 2%;
    font-size: 18px;
    text-align: left;
    padding-bottom: 2%;
}
/*Index.html's team table*/
#introtable {
    margin-left: auto;
    margin-right: auto;
}

/*Nav bar at the top of screen*/
.navigation {
    position: relative;
}

.navigation ul {
    list-style-type: none;
    display: table;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background-color: #111;
}

.navigation li {
    float: left;
}

.navigation li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 100px;
    text-decoration: none;
}

.navigation li a:hover {
    background-color: #333;
}

.column1 {  grid-column-start: 0;
            grid-column-end: 1;}
.column2 { grid-column-start: 1;
            grid-column-end: 2;}
.column3 { grid-column-start: 2;
            grid-column-end: 3;}
.column4 { grid-column-start: 3;
            grid-column-end: 4;}
.column5 { grid-column-start: 4;
            grid-column-end: 5;}

.grid-container {
  display: grid;
  grid-template-columns:
    auto;
  grid-gap: 10px;
  background-color: black;
  padding: 10px;
}

.grid-container > div {
  background-color: rgba(207, 209, 227);
  text-align: center;
  font-size: 30px;
}

.description {
  width: 95%;
  font-size: 14px;
}
