body {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

nav {
    border-bottom: black solid 2px;
    padding: 0px;

}

.inline-list {
  list-style-type: none; /* Removes default bullet points */
  padding: 0;
  text-align: center; /* Centers the list items within the UL */
}

.inline-list li {
  display: inline-block;
  padding: 15px 20px;
  background-color: beige;
  border-style: outset;
  border-width: thick;
  margin: 0 10px; /* Adds space between items */
}

.title {
    font-family:'Times New Roman', Times, serif;
    font-weight: bold italic;
    text-align: center;
}

body {
    background-image: url(../images/powerlines.jpg);
    background-repeat: repeat;
    background-size: 512px;
}

p { 
    background-color: beige;
    border: outset;
    border-width: thick;
    padding: 20px;
}

h2 { 
    color: beige;
    background-color: gray;
    text-align: center;
    margin: 20px;
    font-size: 18pt;
    line-height: 30pt;
    border-color: black;
    border-radius: 15px;
}

/* Testing grid styles section */

.parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
}
    
.div1 {
    grid-row: span 5 / span 5;
    grid-column-start: 1;
}

.div2 {
    grid-column: span 3 / span 3;
    grid-row: span 5 / span 5;
    grid-column-start: 2;
}

.div3 {
    grid-row: span 5 / span 5;
    grid-column-start: 5;
}

/* End grid style sections */



