/* 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: #1A1423;
  color: #E2C2C6;
  font-family: Verdana;
}

body h2 {
  color: #B9929F;
}

body h3 {
  color: #684756;
}

.container { 
  display: grid; 
  margin: 16px;
  padding: 32px;
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: auto; 
  gap: 32px; 
}

.container img {
  width: 100%;
}

.container p {
  color: #684756;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4; 
  letter-spacing: 0px; 
  text-align: left; 
  text-transform: uppercase;
}

.button {
  background-color: #1A1423;
  border: 2px solid #E2C2C6;
  color: #E2C2C6;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}
