/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
    font-family: arial, helvetica, sans-serif;
    font-size: 14px;
    color: black;
    background-color: #ffc;
    margin: 20px;
    padding: 0;
}

/* This is a comment, by the way */

p {
    background-color: #3333;
    color: #ffc;
}

h1 {
    color: #413e29;
    background-color:#c7bc7b;
    font-size: 2em;
    margin: 0;
    margin-bottom: 7px;
    padding: 4px;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.5em;
}

h2 {
    color: white;
    background-color: #090;
    font-size: 1.5em;
    margin: 0;
    padding: 2px;
    padding-left: 14px;
}

h3 {
    color: #999;
    font-size: 1.25em;
}

img {
    border-style: dashed;
    border-width: 2px;
    border-color: #ccc;
}

a {
    text-decoration: none;
}

strong {
    font-style: italic;
    text-transform: uppercase;
}

li {
    color: #900;
    font-style: italic;
}

table {
    background-color: #ccc;
}

.box {
  border: 2px solid black;
  padding: 5px;
  margin: 5px;
  height: 500px;
}

.grid-container {
  display: grid;
  grid-template-areas: "col1 col2 col3 col4";
}

#g1 {
  grid-area: col1;
}

#g2 {
  grid-area: col2;
}

#g3 {
  grid-area: col3;
}
#g4 {
  grid-area: col4;
}