body {
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  }


/*This makes images shrink when their container becomes too small (responsive design)*/
img {
  max-width: 100%;
  height: auto;
  }

@media only screen and (min-width: 600px) {
  .small {
  max-width: 60%;
  height: auto;
    }
  }

.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
  }

a:hover { 
  text-decoration: underline;
  }

/*#CONTAINER is the rectangle that has contains everything but the background!*/




#bl ul{
  list-style: none;
  padding: 0;
  color: white;
  line-height: 1.2em;
  text-align: center;
  }

h1 {
  font-size:28px;
  }

a {
  color: white;
  text-decoration: none;
  }

p {
  color: white;
  line-height: 1.6em;
  }
#tr {
  background-color:black;
  color:white;
  padding:15px 24px;
  grid-area: tr;
  height:360px;
  }
#tr a {
  text-decoration: underline;
}
#tl {
  border-style: solid; 
  border-width: 2px;
  max-width: 150px;
  max-height: 146px;
  grid-area: tl;
  }

#bl {
  text-align: center;
  background-color: black;
  padding:2px;
  height: 170px;
  grid-area: bl;
  align-self: flex-end;
  }
  
.container {
  display: grid;
  grid-template-areas:
    "tl tr"
    "bl tr";
  grid-template-columns: 150px;
  gap: 15px;
  margin: 3em auto;
  width: 700px;
  }
  
#tr h1 p {
  margin: 20px 15px auto 15px;
  }