html {
  margin: auto;
  width: 100%;
  line-height: 1.05;
}

body {
  display: grid;
  grid-template-rows: 1fr 10rem auto;
  grid-template-areas: "header" "main" "." "footer";
  /* overflow-x: hidden; */
  background: #f1dab8; /* #F5F7FA; */
  min-height: 100vh;
  font-family: "Open Sans", sans-serif;
}
body .footer {
  z-index: 1;
  --footer-background: #5d270a ;/* #5d270a; #ED5565; #350501; */
  display: grid;
  position: relative;
  grid-area: footer;
  min-height: 12rem;
  background-image: url("backy.png");
  background-repeat: repeat;
}
body .footer .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
  background: var(--footer-background);
  filter: url("#blob");
  width: 90%;
  margin: 0% 3%;
}
body .footer .bubbles .bubble {
  position: absolute;
  left: var(--position, 50%);
  background: var(--footer-background);
  border-radius: 100%;
  -webkit-animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
          animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  transform: translate(-50%, 100%);
}
body .footer .content {
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr auto;
  grid-gap: 4rem;
  padding: 2rem;
  background: #350501; /* var(--footer-background); #481b03e0; */
}
body .footer .content a, body .footer .content p {
  color: #F5F7FA;
  text-decoration: none;
}
body .footer .content b {
  color: white;
}
body .footer .content p {
  margin: 0;
  font-size: 0.75rem;
}
body .footer .content > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}
body .footer .content > div > div {
  margin: 0.25rem 0;
}
body .footer .content > div > div > * {
  margin-right: 0.5rem;
}
body .footer .content > div .image {
  align-self: center;
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0;
  background-size: cover;
  background-position: center;
}
body .main  > div .image {
  align-self: center;
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0;
  background-size: cover;
  background-position: center;
}

/*  */
body .header .content {
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr auto;
  grid-gap: 3rem;
  padding: 0.60rem;
  background: #481b03e0; /* var(--footer-background); #481b03e0; */
}
body .header .content a, body .header .content p {
  color: #F5F7FA;
  text-decoration: none;
}
body .header .content b {
  color: #f1dab8;
  margin: 10px;
}
body .header .content h1 {
  color: #f1dab8;
  margin: 10px;
}
body .header .content h2 {
  color: #f1dab8;
  margin: 10px;
}
body .header .content p {
  margin: 10px;
  font-size: 0.75rem;
}
body .header .content > div {
  display: block; 
  /* flex-direction: column;  */
  justify-content: center;
  margin: auto;
  text-align: center;
}
body .header .content > div > div {
  margin: 0.25rem 0;
}
body .header .content > div > div > * {
  margin-right: 0.5rem;
}
body .header .content > div .image {
  align-self: center;
  width: 16rem;
  height: 16rem;
  margin: 0.05rem 0;
  background-size: cover;
  background-position: center;
}
body .header  > div .image {
  align-self: center;
  width: 16rem;
  height: 16rem;
  margin: 0.05rem 0;
  background-size: cover;
  background-position: center;
}

@-webkit-keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}

@keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}
@-webkit-keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}
@keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}
