/* 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 {
  background-color: hsl(40, 24%, 70%);
  color: black;
  font-family: Helvetica;
}

header {
  text-shadow: 0px 0px 3px #000;
  color: hsl(152, 44%, 64%);
  background-color: hsl(40, 48%, 34%);
  left: 0px;
  top: 8px;
  width: 100%;
  box-shadow: 0px 0px 10px 2px hsl(40, 24%, 20%);
}

main {
  margin: 16px 12.5% 16px 2.5%;
}

footer {
  left: 0px;
  bottom: 0px;
  width: 100%;
  background-color: hsl(40, 48%, 34%);
  box-shadow: 0px 0px 10px 2px hsl(40, 24%, 20%);
}

section {
  background-color: hsl(40, 48%, 78%);
  border-width: 8px;
  border-color: hsl(40, 48%, 85%);
  border-style: outset;
  padding: 1.75%;
  margin: 8px 0;
}

aside {
  max-height:100%;
  width:75%;
  padding-left: 16px;
  margin: 16px;
  background-color: lightgray;
}

.container {
 display: grid;
 align-items: flex-start; 
 grid-template-columns: 2fr 1fr;
 column-gap: 8px;
}

aside > img {
  max-width: 100%;
  max-height:100%
}

h1 {
  padding: 4px 5%;
  margin: 0;
  font-size: large;  
}

h2 {
  display:inline-block;
  vertical-align: top; 
  text-shadow: 0px 0px 10px hsl(40, 24%, 40%);
  background-color: hsl(40, 24%, 70%);
  border-width: 6px;
  border-color: hsl(40, 48%, 85%);
  border-style: inset;
  margin: 0;
  padding: 8px 12px 8px 8px;
}

section > p {
  text-align: justify;
  text-shadow: 0px 0px 5px hsl(40, 24%, 60%);
  margin: 1% 2% 0 0;
}

a {
  text-shadow: 0px 0px 3px #000;
  color: hsl(152, 44%, 64%);
}

b {
  color: hsl(152, 44%, 32%);
  font-size: larger;
}

i {
  font-size: xx-small;  
}