/* color palette
  dark pink: rgb(218, 62, 95)
  light pink: rgb(247, 211, 214)
  dark red: rgb(140, 24, 33)
  light red: rgb(222, 114, 130)
  orange: rgb(246, 183, 87)
  dark orange: rbg(209, 125, 45)
  yellow: rgb(241, 220, 92)
  light yellow: rgb(244, 232, 171)
  green: rgb(122, 163, 51)
  light green: rgb(228, 244, 159)
  blue: rgb(3, 111, 139)
  light blue: rgb(154, 197, 209)
  backgroundcolor: rgb(255, 252, 240)
*/

html {
      font-family: "Rainy Hearts", Arial;
      background-image: url('https://file.garden/aMmBMZ35A2oKef5e/neocities/images/rainbowplaid.webp');
      background-size: 1920px;
      background-repeat: no-repeat;
      background-attachment: fixed;
}

* {
  box-sizing: border-box;
}

.header {
  grid-area: header;
  padding: 20px;
  text-align: center;
}

.grid-container {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: 'header header header'
  'left middle right'
  'footer footer footer';
  grid-column-gap: 10px;
  justify-items: center;
}

.left,
.middle,
.right {
  padding: 10px;
  margin-top: 20px;
}

.left {
  grid-area: left;
}

.middle {
  grid-area: middle;
  background-color: rgb(255, 252, 240);
  justify-self: stretch;
  min-width: 250px;
  place-items: center;
  border-radius: 20px;
  border-style: dashed;
  border-color: rgb(122, 163, 51);
}

.right {
  grid-area: right;
}

footer {
  grid-area: footer;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgb(218, 62, 95);
  padding: 10px;
  margin-top: 20px;
  text-align: center;
  align-content: end;
}
