* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: open-sans, sans-serif;
  font-size: 18px;
  background-color: #cbdf9d;
  text-align: center;
}

main {
  width: 450px;
  border-radius: 15px;
  margin: 4rem auto;
  overflow: hidden;
}

.container {
  height: auto; 
  width: 100%;
  overflow: hidden;
}

.image {
  width: 100%;
  height: auto; 
  display: block;
}

.text {
  background-color: #9ddcdf;
  color: #0c2224;
  padding: 25px;
}

h1 {
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-size: 1rem;
  margin-bottom: 0.5px;
  color: #013220;
}

p.quote {
  font-style: italic;
  font-size: .75rem;
  text-transform: lowercase; 
  line-height: 1rem; 
  margin-bottom: 0.25rem;
}

p.character {
  font-weight: bold;
  font-size: 0.9rem;
  color: #c28500;
}
  
  
  
