body {
    min-height: 100%;
    max-width: 800px;
    margin: auto;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    background-color: snow;
}

.grid-container {
    align-items: center;
    height: 100%;
    max-width: 800px;
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "a a" "b c" "d d";
}

.box {
    text-align: center;
}

#header{
    grid-area: a;
    background-color: antiquewhite;
}

#blurb {
    grid-area: b;
    text-align: left;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-left: 30px;
    padding-right: 30px;
}

#logo{
    height: 200px;
}

#logo-text{
    font-family: "Macondo", cursive;
    /* font-size: 80px; */
    font-size: clamp(40px, 10vw, 80px);
    margin: 40px;
    line-height: 0%;
}

#center-image-box{
    grid-area: c;
}

#footer {
    grid-area: d;
}

#main-image{
    height: 40vw;
    margin-top: 10px;
    min-height: 230px;
    max-height: 350px;
    margin-right: 50px;
}

#donate {
  padding: 10px 30px 10px 40px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  background-color:green;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.5s ease;
}

#donate:hover {
  letter-spacing: 3px;
  background-color:forestgreen;
  color: hsl(0, 0%, 100%);
  box-shadow: forestgreen 0px 7px 29px 0px;
}

#donate:active {
  letter-spacing: 3px;
  background-color: forestgreen;
  color: hsl(0, 0%, 100%);
  box-shadow: forestgreen 0px 0px 0px 0px;
  transform: translateY(1px);
  transition: 100ms;
}