/* Centers all text within <p> tags */
p {
  
}
p {
  
  color: blue /* Using a color name */
 
}
p {
  text-align: center;
}
li {

 color: yellow /* Using a color name */
}
h1 {
  text-align: center;
}
h1 {
    color: red /* Using a color name */
}

h2 {
    color: orange /* Using a color name */
}
h2 {
  text-align: center;
}
h2 {
    color: orange /* Using a color name */
}
p {
    font-family: Arial, Helvetica, sans-serif;
}
h1 {
    font-family: Arial, Helvetica, sans-serif;
}
h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

li {
  margin-left: 45%;
}
a {
  margin-left: 45%;
}
ul {
  margin-right: 15%;
}
h2 {
    font-size: 24px;
}
a {
    font-size: 24px;
}
p {
    font-size: 24px;
}

.three-column-list {
    display: grid;
    /* Defines 3 columns with equal width */
    grid-template-columns: repeat(3, 1fr); 
    /* Optional: Removes default list bullets/numbers */
    list-style-type: none; 
    /* Optional: Removes default padding/margin */
    padding: 0; 
    margin: 0;
}

