body {
  color: #181818;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

p {
  margin-bottom: 0;
}

a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  color: #363636;
  text-decoration: underline;
}

.bg {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100svw;
  height: 100svh;
  padding-top: 3svh;
  padding-bottom: 3svh;
  display: flex;
}

.footer {
  grid-column-gap: 2svw;
  grid-row-gap: 2svw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: end stretch;
  width: 100%;
  padding-left: 5svw;
  padding-right: 5svw;
  display: grid;
}

.logo {
  height: 30%;
  max-height: 200px;
}

.body {
  background-color: #ece8de;
  background-image: none;
  background-position: 0 0;
  min-width: 100svw;
  max-width: 100svw;
  min-height: 100svh;
  max-height: 100svh;
}

@media screen and (max-width: 479px) {
  .footer {
    flex-flow: column;
    grid-template-columns: 50% 1fr;
    align-items: flex-start;
    display: flex;
  }

  .body {
    font-size: 12px;
  }

  .paragraph {
    flex: 0 auto;
    order: 9999;
  }
}


